$(function(){
	$('#sitemap_holder').hide();
	
	$('#sitemap_holder .sm_close a').click(function(){
		$('#sitemap_holder').slideToggle('fast');
		return false;
	});
	$('.footer .sm_open').click(function(){		
		$('#sitemap_holder').slideToggle('fast');
		return false;
	});
		
	$('input.qty').focus(function(){	
		if($(this).val() == "Qty"){
			$(this).val("");
		}
	});
	
	var lheight = $('.content .left').outerHeight();
	var rheight = $('.content .right').outerHeight()+40;		
	
	if(lheight > rheight){
		$('.content .right').height(lheight);
	}
	
});

