/* CLEARER */
var $j = jQuery;
	
$j(window).ready(function() {
	$j("input[rel='clear']").focus(function() {if ($j(this).val() == this.defaultValue) {$j(this).val('');}});
	$j("input[rel='clear']").blur(function() {if ($j(this).val() == '') {$j(this).val(this.defaultValue);}});
});

/* TOOL TIP */
function showtip(selector) {
	$j(selector).parent().find('.tip').stop(true, true).animate({height: '100%', opacity: '1'}, 200).addClass('show');
}

function hidetip(selector) {
	$j(selector).parent().find('.tip').stop(true, true).animate({height: '0', opacity: '0'}, 200, function(){$j(this).removeClass('show');});
}

/* MAIN PAGE FOOTER BOXES */
$j(window).ready(function(){

	if($j("#mainfooter #newsletter").length && !$j("#mainfooter #myaccount").length) {$j("#mainfooter #editable").addClass('col2');} // NEWSLETTER, NO MYACCOUNT
	else if(!$j("#mainfooter #newsletter").length && $j("#mainfooter #myaccount").length) {$j("#mainfooter #editable").addClass('col2');} // NO NEWSLETTER, MYACCOUNT
	else if(!$j("#mainfooter #newsletter").length && !$j("#mainfooter #myaccount").length) {$j("#mainfooter #editable").addClass('col1');}

});

$j(window).ready(function(){
	
	$j("#cart #currency-symbol").click(function(){$j("#cart #currency-dropdown").toggle(300);});
	
});
