$(function(){

	//===== RESETS

	$('#mainwrap, #borderwrap').corner({tl:false, tr:false, bl:{radius:10}, br:{radius:10}, antiAlias:true, autoPad:false });
	
	$('#searchweb-btn, #findstore-btn').val('');
	
	//===== TOP-HEADER
	
	$('#searchweb-inp').val('search the website...').bind('focus', function(){
		if($(this).val()==='search the website...'){
			$(this).val('');
		};
	}).bind('blur', function(){
		if($(this).val()===''){
			$(this).val('search the website...');
		};
	});
	
	//===== TOP-HEADER INPUT SEARCHES
	
	$('#findstore-inp').val('enter your zip code or address').bind('focus', function(){
		if($(this).val()==='enter your zip code or address'){
			$(this).val('');
		};
	}).bind('blur', function(){
		if($(this).val()===''){
			$(this).val('enter your zip code or address');
		};
	});
	
	$('.mainheader a').bind('click', function(){
		$('.mainheader-txt').toggleClass('mainheader-txt2');
		return false;
	});
	
	$('#findstore-inp').val('coming soon').attr({disabled:"disabled"}).css({color:"#9a9a9a"});
	
	//===== DROP DOWN NAVIGATION
	
	$('#navdropdownwrap').css({height:0})
	var $navbox = $('#navdropdown')
		.css({top:-120, display:'none'})
		.mouseleave(function(){
			$navbox.stop(true).animate({top:-120})
		})
	;
	
	$('#navdropbtn').bind('mouseenter click', function(){
		$navbox.stop(true).css({display:'block'}).animate({top:0});
		return false;
	});
});
