$(document).ready(function(){
	jQuery.fn.fadeToggle = function(speed, easing, callback) {
	   return this.animate({opacity: 'toggle'}, speed, easing, callback);
	};
	$("#subNav").hide();
	$(".products a").click(function(){
		$("#subNav").fadeToggle("slow");
		return false;
	});
	$("#header, #content").click(function(){
		$("#subNav").hide()
	});
	$('.ss a').fancyZoom({closeOnClick: true});
});

/*jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox() 
});
*/

function iecheck()
{
    var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
    if (IE6) {
        //jQuery.facebox('<div align="center"><img src="http://conceitedsoftware.com/cs.png" height="373" width="265"></div>We are very sad to tell you that you\'re using Internet Explorer 6 or under. That is a crime against humanity. Even worse is that this site may not function correctly with your browser.<br/><br/>You should try out a new browser, maybe <a href="http://apple.com/safari">Safari</a> or <a href="http://mozilla.org/firefox">Mozilla Firefox</a>.');
        alert('We are very sad to tell you that you\'re using Internet Explorer 6 or under. That is a crime against humanity. Even worse is that this site may not function correctly with your browser. You should try out a new browser, maybe Safari or Mozilla Firefox. Hell, even Google Chrome would be better than what you have man.');
    }
}