$(document).ready(function(){
	
	$('body, img, div').pngFix();

	$('div.success,div.error').hide().fadeIn(500).fadeOut(500).fadeIn(500).fadeOut(500).fadeIn(500);
	
	var s = $("input#searchValue");
	var stxt = 'Product Search...';
	s.val(stxt);
	s.focus(function() { if(s.val() == stxt) {s.val("");} });
	s.blur(function() { if(s.val() == "") {s.val(stxt);} });
	
	var s2 = $("input#lowerInput");
	var stxt2 = 'Enter your email address...';
	s2.val(stxt2);
	s2.focus(function() { if(s2.val() == stxt2) {s2.val("");} });
	s2.blur(function() { if(s2.val() == "") {s2.val(stxt2);} });
	
	$('.cat-item a img, .lower-item a img, .cat-item-small-img a img').hover(function() {
		$(this).stop().animate({ opacity: 0.7 }, 400);
	}, function() {
		$(this).stop().animate({ opacity: 1.0 }, 400);
	});

	
	

});
