
jQuery(document).ready(function(){


	if( jQuery("#ad-player").length > 0 ){
	
		flowplayer("ad-player", "wp-content/themes/hi-tech-pest-control/scripts/flowplayer-3.2.7.swf", {
		
			clip:{
			
				autoPlay: false,
				autoBuffering: true,
				scaling: 'fit'
			
			}
		
		});
	}

	jQuery("#home-form-holder a").click(function(){
		
		jQuery("#home-form-holder .the-form").show();
	});
	
	jQuery("#home-form-holder .the-form .close").click(function(){
		
		jQuery("#home-form-holder .the-form").hide();
	});
	
	
	jQuery("#social_network").click(function(){


    	if( jQuery(this).css('right') == '-62px' ){
    	
	    	jQuery(this).animate({
	    	
	    		right: '+=62'
	    		
	    	}, 500);    	
    	}
    	else if( jQuery(this).css('right') == '0px' ){
    	
	    	jQuery(this).animate({
	    	
	    		right: '-=62'
	    		
	    	}, 500);      	
    	}	
	
	});
	
	
});
