$(function() {
		   
		   $('.header').append('<span class="crnr tl"></span>');
		   $('.header').append('<span class="crnr tr"></span>');
		   
		   $('.footer').append('<span class="crnr bl"></span>');
		   $('.footer').append('<span class="crnr br"></span>');
		   
		   $('.square-list li').append('<span class="square" />');
		   
		   $('.square-list li').each(function(index) {
			
				$(this).addClass('square' + index);
			
			});
		   
		   $('.header .tabs li a').each(function() {
								
				if (!$(this).hasClass('selected')) {
					
					$(this).hover(
								  
					function() {
						$('.header .tabs li a').removeClass('selected');
						$(this).addClass('selected');
					},
					
					function() {
						$('.header .tabs li a').addClass('selected');
						$(this).removeClass('selected');
					}
					
					);
				}
									
			});
		   
});

function openWindow(location, width, height, winOpts){
	//Options
	if(winOpts.charAt(0) != "," && winOpts != "") winOpts = "," + winOpts;
	//Open & focus
	custWin = window.open(location, 'cmsPop_' + width + '_' + height, 'width=' + width + ',height=' + height + winOpts);
	custWin.focus();
}

function galleryImage(id, width, height){
	width += 74;
	height += 72;
	openWindow("gallery_image.php?id=" + id, width, height, "scrollbars=no, resizable=yes");
}

