$(function(){
	
/* This function creates the rollover effect for the tiles on the homepage */ 
	$("ul.ourServicesTiles li, ul#tiles li").hover(function() {
	$(this).animate({
			marginTop: '-20px', /* The next 4 lines will vertically align this image */ 
			}, 100); /* this value of "200" is the speed of how fast/slow this hover animates */
	} , function() {
	$(this).animate({
			marginTop: '0', /* Set alignment back to default */
			}, 400);
	});
		
/* Creates the sliding effect for the graph paper */ 
	$("header#ani").hide().slideDown(1500);
	/*$("#carousel2 a").click(function() {
		$("header#ani").slideUp("fast");
	}); */

	$("section#marketplacesDetail").hide().slideDown("slow");
});
