$(document).ready(function() {					   
	$(".PortfolioItem a").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity' : .8 });

	$("#twitter_update_list").children(':odd').addClass('Odd');
	
	//MENU Otherlinks DropDown
	$("#More").hover(
		function(){
			$('#More ul').stop(true,true);
			$('#More ul').fadeIn(600);
		},function(){
			$('#More ul').fadeOut(400);
		});
	
	//FAQ Area
	$('#FAQarea div').hide();
	$('#FAQarea h3').click(function () {
		$(this).next('div').slideToggle();
	});

	//Peek-a-boo Box
	//http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/
	     //SlideUp  
	     $('.boxgrid.slideup').hover(function(){  
	         $(".cover", this).stop().animate({bottom:'0px'},{queue:false,duration:300});  
	     }, function() {  
	         $(".cover", this).stop().animate({bottom:'-60px'},{queue:false,duration:300});  
	     });  
	//FancyBox
		$("a.lightbox").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity' : 0.8 }); 


	$('#ctl00_ctl00_ctl00_ContentPlaceHolderDefault_MasterContentPlaceHolder_ContactForm_1_btnSubmit').click(function() {
		$(this).after("<span style='color:#F748A7; padding-left:20px;'>SENDING MESSAGE!</span>");
	});
});