/**
 * PSP.js for www.debenhams.com
 * last updated 10 Feb 2010, 15:30
 */
 
// -----------------------------------------------------------------------
// Choose more modal dialog
// -----------------------------------------------------------------------
var cmmodal = null;

$(function() {

	// ESC closes modal
	$(document).keyup(function(event){
		if (event.keyCode == 27 && cmmodal ) {
			cmmodal.close();
			cmmodal = null;
		}
	});
	
});

/* facet selections more tooltip */
if(/MSIE 6/i.test(navigator.userAgent)) {
                $("#products_found").hover(function(){$(this).addClass('hovered');},function(){$(this).removeClass('hovered');});
                $('#products_found_tooltip_html').bgiframe();
}

