jQuery(document).ready(function(){
	// style switcher
	jQuery('#switcher a').click(function() {
		setActiveStyleSheet(this.getAttribute("rel"));
		jQuery(this).siblings().removeClass('active').end().addClass('active');
		return false;
	});
	// menu hovers
	jQuery("#menu ul li").hover(
      function () {
        jQuery(this).addClass('hovered');
      }, 
      function () {
        jQuery(this).removeClass('hovered');
      }
    );
	
	// front box last
	jQuery('.frontBoxBig:last').css({"margin-right":"0"});
	
	// last sub sub menu item
	jQuery('ul.subMenu li li li a:last').addClass('lastSub');
});


function PrintLink() {
	var url = document.location.href;  
	var newurl = url;
	if ( url.indexOf("?") > -1 ) newurl = newurl+'&typeP=1';
	else  newurl = newurl+'?typeP=1';
	
	window.open(newurl,'PrintPage','menubar=1,scrollbars=1,width=730,height=680');
}
