
$(function(){
	
	$('#menu ul li').hover( function(){ $(this).addClass('over') }, function(){ $(this).removeClass('over') });
	
	$('Table.Pricing tr,table.Prices table tr').each( function() {
		$(this).find('td:first').addClass('first');
		$(this).find('th:first').addClass('first');
		$(this).find('td:last').addClass('last');
		$(this).find('th:last').addClass('last');
	});
	$('table.Prices table').each(function(){ $(this).find('tr:first').addClass('firstRow'); });
	
	$("a.fancyPhoto").fancybox();
	$("a.fancyPic").fancybox();
	
	$("a.fancyPhotoTitle").fancybox({
		'transitionIn'	:	'elastic',
//		'transitionOut'	:	'elastic',
		'speedIn'		:	350, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'titleShow'		:	true
	});

});

function MM_openBrWindow(theURL,winName,features) { //v2.0

	window.open(theURL,winName,features);
	
}

