 $(document).ready(function()
	{
	
	$("#p1").mouseover( function() 
		{
		$("#p1 > .small").hide();
		$("#p1 > .big").show();
		} );
		
	$("#p1").mouseout( function() 
		{
		$("#p1 > .small").show();
		$("#p1 > .big").hide();
		} );
		
	$("#p2").mouseover( function() 
		{
		$("#p2 > .small").hide();
		$("#p2 > .big").show();
		} );
		
	$("#p2").mouseout( function() 
		{
		$("#p2 > .small").show();
		$("#p2 > .big").hide();
		} );
		
	$("#p3").mouseover( function() 
		{
		$("#p3 > .small").hide();
		$("#p3 > .big").show();
		} );
		
	$("#p3").mouseout( function() 
		{
		$("#p3 > .small").show();
		$("#p3 > .big").hide();
		} );
		
		
	$("#p4").mouseover( function() 
		{
		$("#p4 > .small").hide();
		$("#p4 > .big").show();
		} );
		
	$("#p4").mouseout( function() 
		{
		$("#p4 > .small").show();
		$("#p4 > .big").hide();
		} );				

	$("#p5").mouseover( function() 
		{
		$("#p5 > .small").hide();
		$("#p5 > .big").show();
		} );
		
	$("#p5").mouseout( function() 
		{
		$("#p5 > .small").show();
		$("#p5 > .big").hide();
		} );
		
	$("#p6").mouseover( function() 
		{
		$("#p6 > .small").hide();
		$("#p6 > .big").show();
		} );
		
	$("#p6").mouseout( function() 
		{
		$("#p6 > .small").show();
		$("#p6 > .big").hide();
		} );		
						
 	});



