/* this prevents dom flickering, needs to be outside of dom.ready event: */
document.documentElement.className += 'js_active';
/*end dom flickering =) */

jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery('#cssdropdown li.headlink').hover(
		function() { jQuery('ul', this).css('display', 'block'); },
		function() { jQuery('ul', this).css('display', 'none'); });
});


jQuery(window).load(function(){

});


