// JavaScript Document
jQuery.noConflict();
var menulocation = 0;
jQuery(document).ready(function() {
	jQuery(".dropdowndiv").hide();
	jQuery(".dropdownlink").click(function(){
		jQuery(".dropdowndiv").slideDown('fast');
	});
	jQuery(".dropdownlink").mouseout(function(){
		window.setTimeout('checklocation()',200);
	});
	jQuery(".dropdowndiv").mouseover(function(){
		menulocation = 1;
	});
	jQuery(".dropdowndiv").mouseout(function(){
		menulocation = 0;
		window.setTimeout('checkinnerlocation()',200);
	});
});
function checkinnerlocation(){
	if( menulocation == 0){
		jQuery(".dropdowndiv").slideUp('fast');
		menulocation = 0;
	}
}
function checklocation(){
	if(menulocation == 0){
		jQuery(".dropdowndiv").slideUp('fast');
	}
}