/* Document ready */
$(function show_popup() {
	

	// IE
	var isIE = /msie|MSIE/.test(navigator.userAgent);
	
	// IE6
	var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	
	// PNGfix
	if(isIE6 && typeof(DD_belatedPNG) != 'undefined'){
		DD_belatedPNG.fix('.png');
	}
	
	// ie6 hover fix
	if(isIE6){
		var hoverFix = $('.hover-fix');
		if(hoverFix.length){
			hoverFix.bind('mouseover', function(){
				$(this).addClass('hover');
			}).bind('mouseout', function(){
				$(this).removeClass('hover');
			});
		}
	}
	
	
	
	
});
