/* ------------------------------------------------------------------------------------------- *

	* Filename:				effects.js
	* Description:			Compiling all effects used throughout the site into one handy file!
	* Version:				1.0.0 (05-2009) MM-YYYY
	* Website:				http://www.thecollectivecgi.com
	
	==STRUCTURE================================================================================
	
	$ __nav_head				Rollover effects within header

 * ------------------------------------------------------------------------------------------- */

  
/* __nav_head				Rollover effects within header
 * ------------------------------------------------------------------------------------------- */
$(document).ready(function(){
															
	/* search form 
	
	$(".search").hover(function() {
 		$(this).css({backgroundPosition: '-620px -30px'});
 	}, function() {
		if ($(".search input#s").focus) {
		return $(this).css({backgroundPosition: '-620px 0'});
		} else if ($(".search input#s").blur) {
		return $(this).css({backgroundPosition: '-620px -60px'});
		}	
	 });
	
	$(".search button#searchsubmit").hover(function() {
 		$(".search").css({backgroundPosition: '-620px -90px'});
 	}, function() {
 		$(".search").css({backgroundPosition: '-620px 0'});
	 });
	*/
		
	$(".search input#s").focus(function() {
	 	$(".search").css({backgroundPosition: '-620px -60px'});
	});
	$(".search input#s").blur(function() {
	 	$(".search").css({backgroundPosition: '-620px 0'});
	});
	
		
});
	