$(document).ready(function(){
		
		//Hide div w/id extra
	   $("#budget1").css("display","none");
     $("#budget2").css("display","none");

		// Add onclick handler to checkbox w/id checkme
	   $("#monthly").click(function(){
		
		// If checked
		if ($("#monthly").is(":checked"))
		{
			//show the hidden div
			$("#budget1").show("fast");
		}
		else
		{	   
			//otherwise, hide it 
			$("#budget1").hide("fast");
		}
	  });
    
    
    // Add onclick handler to checkbox w/id checkme
	   $("#onetime").click(function(){
		
		// If checked
		if ($("#onetime").is(":checked"))
		{
			//show the hidden div
			$("#budget2").show("fast");
		}
		else
		{	   
			//otherwise, hide it 
			$("#budget2").hide("fast");
		}
	  });   
	  
	  
	  
	  $("#pageflip").hover(function() { //On hover...
	$("#pageflip img, #pageflip span").stop()
		.animate({ //Animate and expand the image and the msg_block (Width + height)
			width: '219px',
			height: '219px'
		}, 500);
	} , function() {
	$("#pageflip img").stop() //On hover out, go back to original size 50x52
		.animate({
			width: '115px',
			height: '115px'
		}, 220);
	$("#pageflip span").stop() //On hover out, go back to original size 50x50
		.animate({
			width: '113px',
			height: '113px'
		}, 200); //Note this one retracts a bit faster (to prevent glitching in IE)
});



});
