// document.getElementById('noscript').href = '';

var noscript = document.getElementById('noscript');
document.getElementsByTagName('head')[0].removeChild(noscript);


jQuery(document).ready(function(){
	
	jQuery('a[rel="lightbox"]').fancybox();
	
	jQuery('ul#navigation li').hover(function(){
//		alert('hover');
		jQuery(this).children('ul').stop(true, true);
		jQuery(this).children('ul').show(300);
	},function(){
		jQuery(this).children('ul').hide(300);
	});
	
});

