$(function(){
	//HOVER CLASS FOR LIST ITEMS
	$('#nav_top li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	//LINKS THAT OPEN NEW BROWSER WINDOW
	$('.brwin').click(function(){
		MM_openBrWindow(this.href,'','scrollbars=yes,width=' + $(this).attr('win_w') + ',height=' + $(this).attr('win_h') + '');
		return false;
	});
});
//NIVO SLIDER
$(window).load(function() {
	if (!fn_isdev() && window.XMLHttpRequest && $('.slider').nivoSlider)
	$('.slider').nivoSlider();
});
function fn_isdev() {
	var a = window.location.host.split('.');
	return (a[a.length - 1] == 'local');
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  return window.open(theURL,winName,features);
}

