﻿$(document).ready(function(){
	
	$("ul.sf-menu").supersubs({
		minWidth:12,
		maxWidth:27,
		extraWidth:1
	}).superfish();
	
	$("a.popup").click(function(a){
		a.preventDefault();
		window.open($(this).attr("href"));
	});
	
	$('#lightbox a').click(function(event) {
		
		event.preventDefault();
		if ($(this).attr("class").indexOf("close") == -1) {
			
			window.top.location = $(this).attr('href');		
		}
	});
});

jQuery(function(){
	jQuery("ul.sf-menu").superfish();
});