// JavaScript Document
$(document).ready(function(){
	
	$(".subscribe .icon").hover(function() {
			$(this).stop().animate({marginTop: "5px"},300);
		}, function(){
			$(this).stop().animate({marginTop: "12px"},300);
	 });

	

	$(".gallery-boxes").hover(function() {
			$(this).stop().animate({marginTop: "-5px"},200);
		}, function(){
			$(this).stop().animate({marginTop: "0px"},200);
	});




// Sponsor Page Images and Behavior
	 $(".sponsors-container img").fadeTo("fast", 0.8);
	
	$(".sponsors-container img").hover(function() {
		$(this).stop().animate({ opacity: 1.0 }, 200);
			}, function(){
		$(this).stop().animate({ opacity: 0.8 }, 300);
	});



	//Default Text in SearchBox
	$("#s").val("search the site...");
	
	// clear input on focus
	$('#s').focus(function() {
		$("#s").val('');
	});
	
	$('#s').bind('blur', function() {
		if ( $('#s').val() == "") {
			$("#s").val("search the site...");
		}
	});
	
	

});
