
jQuery(document).ready(function(){

	/* THIS REMOVE THE LINE FROM THE EMPTY <UL> ELEMENTS (NOTE: be sure there is NO space between the <ul></ul> elements) */
	jQuery("#navigation li ul:empty").remove();
	/* activates rollovers */
	jQuery("#navigation li a img").rollover();
	jQuery(".rollover").rollover();

	/* PNG fix */
	jQuery(document).pngFix();

	/* Activate all media */
	jQuery(".media").media();

	/* remove box from links */
	jQuery("a").focus(function(){
		this.blur();
	});
	
});



