$(document).ready(function(){  
  var fadeDuration = 200;

  // popout
  $("a.out").click( function () {
    window.open('/coupons/show_code/' + /[0-9]+/.exec($(this).attr("id")), '_blank', 'location=0,menubar=0,resizable=yes,scrollbars=no,width=465,height=160');
  });

	//coupons
	$("ul.coupons li a:not(.admin_action)").hover(function(){
		$(this).animate( { paddingLeft: '15px', paddingRight: '25px', paddingTop: '10px', paddingBottom: '30px', backgroundColor: '#00BAFF', borderBottomColor: '#FFFFFF', borderLeftColor: '#FFFFFF', borderRightColor: '#FFFFFF', borderTopColor: '#FFFFFF' }, fadeDuration);
		$(this).children("span.title").animate({ color: '#fff000' }, fadeDuration);
		$(this).children("span.desc").css({ color: '#013e54' });
		$(this).animate( { backgroundPosition: '-10px bottom' }, fadeDuration);

	}, function() {
		$(this).animate( { backgroundPosition: '0 -105px' }, 50);	
		$(this).animate( { paddingLeft: '20px', paddingTop: '20px', paddingBottom: '20px', paddingRight: '20px', backgroundColor: '#FFFFFF', color: '#cf103d', borderBottomColor: '#cf103d', borderLeftColor: '#cf103d', borderRightColor: '#cf103d', borderTopColor: '#cf103d'}, fadeDuration);
		$(this).children("span.title").animate({ color: '#cf103d'}, 50);
		$(this).children("span.desc").animate({ color: '#cf103d'}, 50);
	});
	
	//stores
	$("body:not(#home) ul.stores li a:not(.admin_action)").hover(function(){
		$(this).animate( { paddingLeft: '10px', paddingRight: '30px', paddingTop: '10px', paddingBottom: '30px', backgroundColor: '#00BAFF',  borderBottomColor: '#FFFFFF', borderLeftColor: '#FFFFFF', borderRightColor: '#FFFFFF', borderTopColor: '#FFFFFF' }, fadeDuration);
		$(this).children("span.title").animate({ color: '#fff000' }, fadeDuration);
		$(this).children("span.link").animate({ backgroundColor: '#fff000', color: '#066398' }, fadeDuration);
		$(this).children("span.desc").css({ color: '#013e54' });
		
		$(this).animate( { backgroundPosition: '-10px bottom' }, fadeDuration);

	}, function() {
		$(this).animate( { backgroundPosition: '0 -105px' }, 50);	
		$(this).animate( { paddingLeft: '20px', paddingTop: '20px', paddingBottom: '20px', paddingRight: '20px', backgroundColor: '#FFFFFF', color: '#cf103d', borderBottomColor: '#cf103d', borderLeftColor: '#cf103d', borderRightColor: '#cf103d', borderTopColor: '#cf103d'}, fadeDuration);
		$(this).children("span.title").animate({ color: '#cf103d'}, 50);
		$(this).children("span.link").animate({ backgroundColor: '#CF103D', color: '#FFFFFF' }, 50);
		$(this).children("span.desc").animate({ color: '#cf103d'}, 50);
	});
	
	
	$("form#search input#terms").hover(function(){
        if (($(this)).attr("value")=="Search"){
			$(this).attr("value", ""); 
        } else {
        }  												
		
	}, function() {
        if (($(this)).attr("value")==""){
			$(this).attr("value", "Search"); 
        } else {
        }  
	});
});