
/*function flip(arg)
{

	if(arg=='1')
	{
		document.getElementById('content1').style.display='';
		document.getElementById('content2').style.display='none';
	}
	if(arg=='2')
	{
		document.getElementById('content2').style.display='';
		document.getElementById('content1').style.display='none';
	}
}*/

jQuery().ready(function(){
    
    jQuery("#nextFlip").click(function () {
      jQuery("#content2").fadeIn("slow");
	  jQuery("#content1").hide();
    });
	
	 jQuery("#prevFlip").click(function () {
      jQuery("#content1").fadeIn("slow");
	  jQuery("#content2").hide();
    });

  });

