// Dropdownimage preload

// jQuery
jQuery(document).ready(function() {
	
	// Tabs
	jQuery('#tabcontainer').tabs({ fxFade: true, fxSpeed: 'fast' });
	
});	



// Pop Up Window
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=610,width=810,left=100,top=100,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

