var showing = false;
var hided = false;
var count_click = 0;
var clicked = false;

$().ready(function() { 

	var offset = jQuery('#attributes_anchor').offset();
	var x = offset.left;
	var y = offset.top;
	
	$('#note_size').css('left',(x-10)+'px');
	$('#note_size').css('top',(y-$('#note_size').height())+'px');
	
	$('#attributes_cell select').click(function(){ 
		if(count_click%2==0 || count_click==0) {show_note_size();} else {hide_note_size();}
	});
	
	$('#note_size').click(function(){
		hide_note_size();
	});
	
	$('#attributes_cell select option').click(function(){
		setTimeout('hide_note_size()','200');
	});
	
	
	$('#attributes_cell select').blur(function(){
		hide_note_size();
	});
	
	$('a.emailed').click(function(){
		document.restock_notify.color_id.value = document.cart_quantity.color_id.value;
		$('#popup_color').html($('#selected_color option:selected').html());
		
		$.blockUI({
			message:$('#submit_sizes'),
			css:{borderWidth:"0px",top:"20%",width:"34%",left:"33%"}
		});
	});
	
	$('#sizing_guide').click(function(){ 
		popupWindowSize('http://www.promroyalty.com/sizing_home.php');
		hide_note_size();
	});
	
});

function show_note_size() { 
	if($.browser.msie) {
		$('#note_size').show();
	} else { 
		$('#note_size').fadeIn();
	}
	clicked=false;
	count_click++;
}

function hide_note_size() { 
	if(clicked!=true) { 
		if($.browser.msie) {
			setTimeout("$('#note_size').hide()",400);
		} else { 
			$('#note_size').fadeOut();
		}
		clicked=true;
		count_click++;
	}
}
