$(document).ready
(
	function()
	{		
		$('.box-close').click
		(
			function() {
				var id = this.id;
				var splitArr = id.split('-');
				$('#' + splitArr[1]).hide('slow');
			}
		);	
		
		$('#iconsImages img').click
		(
			function() {
			    $('#iconsImages img').each(
			        function() {
			            var id = this.id;
				        var splitArr = id.split('-');
				        $('#' + splitArr[1]).hide();
			        }
			    );
			    
				var id = this.id;
				var splitArr = id.split('-');
				var offset = $(this).offset();
				$('#' + splitArr[1]).css({'top': (offset.top - 200) + 'px', 'left': (offset.left - 200) + 'px'}).show('slow');
			}
		);	
		
		$('.txtCode').click
        (
            function() {
                this.select();
            }
        );			
	}
);

function checkAll(control)
{
	var flag = false;
	
	if($('#checkall:checked').length) {
		flag = true;
	}
	
	$("input[name=" + control + "]").each(
		function() {
			this.checked = flag;
		}
	);
}
