
//SLIDEDOWN
/*
jQuery(document).ready(function($) {
	$(".hide").slideUp('slow');
				
	$('#pricing_block a.hidden').click(function(){
		$(this).toggleClass('open').parent().next(".hide").slideToggle("slow");
		return false;
		}
	);
	
	$(".seepricing").click(function(){
		$("body").animate({scrollTop:1000},500);
		console.log("hello");
		return false;
		}
	);

	
});

*/
