// JavaScript Document

$(document).ready(function() {
   // do stuff when DOM is ready
   //iSelect promo operation
   $('#iselect_design').hover(function() {
		$(this).find('#iselect_promo:hidden').fadeIn(500);
	}, function() {
		$(this).find('#iselect_promo:visible').fadeOut(500);
	});
   //fix those png's in IE!
   $(document).pngFix();
});

