// JavaScript Document
$(document).ready(function() {
	$('.view_all a').click(function(e) {
	   e.preventDefault();
	   $('.homepage').fadeOut(600,function(){
		   $(this).load('actions/action.specials.php',function(){
			   $(this).fadeIn(600);
		   });
	   });
	});
});
