$(document).ready(function(){
	$('.corner').corner('10px');
	$("#service").hover( function () {
		$(this).next('div').children('div').stop(true, true).fadeIn(500);
		$('#serviceImg').fadeIn(500);
		$('#studioImg').fadeOut(500);
		$('#logoImg').stop(true, true).fadeOut(500);
	},
	function () {
		$(this).next('div').children('div').stop(true, true).fadeOut(500);
		$('#logoImg').stop(true, true).fadeIn(500);
	});
	$("#studio").hover( function () {
		$(this).next('div').children('div').stop(true, true).fadeIn(500);
		$('#studioImg').fadeIn(500);
		$('#serviceImg').fadeOut(500);
		$('#logoImg').stop(true, true).fadeOut(500);    
	},
	function () {
		$(this).next('div').children('div').stop(true, true).fadeOut(500);
		$('#logoImg').stop(true, true).fadeIn(500);
	});		
});
