function openNewWindow(theURL, width, height) { //v2.0
	var winl = (screen.width - width) / 2; //center screen horizontal
	var wint = (screen.height - height) / 2; //center screen vertical
window.open(theURL,'','width='+width+',height='+height+',top=' + wint + ',left=' + winl+',resizable=0,scrollbars=0');
}

$(document).ready(function($){
(function($){
	$(function(){
		$('input.button').each(function(){$(this).replaceWith('<button id="'+ this.id +'" name="'+ this.name +'" type="'+ this.type +'"><span><span>'+ $(this).attr('value') +'</span></span>');});
		$('#nav li:has(ul)').hover(function(){$(this).addClass('sfhover');}, function(){$(this).removeClass('sfhover');});		  
		$('ul.nav li:has(ul)').hover(function(){$(this).addClass('sfhover');}, function(){$(this).removeClass('sfhover');});		  
	});
})
});
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		random:  1 
	});
	
});
$(function() {
        $('#gallery a').lightBox();
});