$(document).ready(function(){		
	$('#link1').hover(function () {
		  $('#content2').hide();	
		  $('#content3').hide();
		  $('#content4').hide();
		  $('#content1').show();
		  $('#link1 img').attr('src','graphics/brand_on_budget_on.gif');
		  $('#link2 img').attr('src','graphics/brand_on_booster_off.gif');
		  $('#link3 img').attr('src','graphics/brand_with_basket_off.gif');
		  $('#link4 img').attr('src','graphics/brand_logo_design_off.gif');
	  }
	);	
	$('#link2').hover(function () {
		  $('#content1').hide();		  
		  $('#content3').hide();
		  $('#content4').hide();
		  $('#content2').show();
		  $('#link1 img').attr('src','graphics/brand_on_budget_off.gif');
		  $('#link2 img').attr('src','graphics/brand_on_booster_on.gif');
		  $('#link4 img').attr('src','graphics/brand_logo_design_off.gif');
		  $('#link3 img').attr('src','graphics/brand_with_basket_off.gif');
	  }
	);		
	$('#link3').hover(function () {
		  $('#content2').hide();	
		  $('#content1').hide();
		  $('#content4').hide();
		  $('#content3').show();
		  $('#link1 img').attr('src','graphics/brand_on_budget_off.gif');
		  $('#link2 img').attr('src','graphics/brand_on_booster_off.gif');
		  $('#link4 img').attr('src','graphics/brand_logo_design_off.gif');
		  $('#link3 img').attr('src','graphics/brand_with_basket_on.gif');
	  }
	);
	$('#link4').hover(function () {
		  $('#content2').hide();	
		  $('#content1').hide();
		  $('#content3').hide();
		  $('#content4').show();
		  $('#link1 img').attr('src','graphics/brand_on_budget_off.gif');
		  $('#link2 img').attr('src','graphics/brand_on_booster_off.gif');
		  $('#link3 img').attr('src','graphics/brand_with_basket_off.gif');
		  $('#link4 img').attr('src','graphics/brand_logo_design_on.gif');
	  }
	);
	
});
function swapimage(area,num){
	if(area==3){	
		$('#area'+area).fadeOut(500, function() {	
			$('#area'+area).attr('src','graphics/logo_examples'+num+'.gif');
		}).fadeIn(1200);		
	}
	if(area==2){	
		$('#area'+area).fadeOut(500, function() {	
			$('#area'+area).attr('src','graphics/stationary_examples'+num+'.gif');
		}).fadeIn(1200);		
	}
	if(area==1){		
		$('#area'+area).fadeOut(500, function() {	
			$('#area'+area).attr('src','graphics/mini_website_preview'+num+'.jpg');
		}).fadeIn(1200);		
	}
	if(area==4){		
		$('#area'+area).fadeOut(500, function() {	
			$('#area'+area).attr('src','graphics/full_website_preview'+num+'.jpg');
		}).fadeIn(1200);		
	}
		if(area==5){		
		$('#area'+area).fadeOut(500, function() {	
			$('#area'+area).attr('src','graphics/ecom_website_preview'+num+'.jpg');
		}).fadeIn(1200);		
	}
	
	
	return false;
}
