			
	//////////////////////////////////////////////////////////////////	
	$(document).ready(function() {
	
		// Round layout corners
		//$('#containerDiv').corner();
		//$('#headerDiv').corner('top, cc:#33465a');
		
		$('#headerDiv').corner("top, round 8px").parent().css('padding', '2px').corner("top, cc:#33465a, round 10px")
	
		
		// Add drop shadow to container
		//$('#containerDiv').dropShadow({left: 8, top: 10, opacity: 0.4, blur: 5});
	
		// Hover menu buttons
		$('#menuDiv #menu img').hover(
			function(){
				$(this).attr('src', $(this).attr('src').replace('.png', '_on.png'));
			},
			function(){
				$(this).attr('src', $(this).attr('src').replace('_on.png', '.png'));
			}
		)
	
		// Hover body menu
		$('#contentMenuDiv .button img').hover(
			function(){
				$(this).attr('src', $(this).attr('src').replace('.png', '_on.png'));
			},
			function(){
				$(this).attr('src', $(this).attr('src').replace('_on.png', '.png'));
			}
		)				
		
		// Slideshow
	    $('#slideshowDiv').cycle({
			fx: 'fade',
			timeout: 5000,
			speed: 2000
		});			
		
	});
	//////////////////////////////////////////////////////////////////	
	
