//Flyout functionality

$(document).ready(function() {
	$('.flyoutsizes').hide();

	$('a.open-flyout').click(function() {
		//to position the flyout on top of the product image
		if ($('.product-pane').length > 0) {
			$('.product-pane').css('opacity',1);	
			
			if ($.browser.msie && ($.browser.version=="6.0" || $.browser.version=="7.0")) {
				$('.product-photos').css('z-index',-1);	// fix z-index issue (for IE7) - yuck 
			}
		};
		
		//open the casual or formal flyout
		if ($(this).hasClass('casual')) {
			$('div.casual .flyoutsizes').show();
		} else {
			$('div.formal .flyoutsizes').show();
		}
	});
		
	$('a.close-flyout').click(function() {
		$('.flyoutsizes').fadeOut("normal", function() {	//close the flyout

			if ($.browser.msie && ($.browser.version=="6.0" || $.browser.version=="7.0")) {
				$('.product-photos').css('z-index',100); // restore the z-index
			}
		});		
	});
});	

