/***************************/
/* here the actions starts */
/***************************/
jQuery(document).ready(function(){
	
	// uhhhhhh.. :/ ..but ist works (ff,ie). maybe it will look more beautiful in two weeks O_O :)
	jQuery('div.dropdown').hover(
		function() {
			jQuery(this).show();
		},
		function() {
			jQuery(this).hide();
		}
	);
	
	// same here.. caused by template structure
	jQuery('div.dropdowntrigger1').hover(
		function() {
			jQuery('#dropdownone').show();
		},
		function() {
			jQuery('#dropdownone').hide();
		}
	);
	
	jQuery('div.dropdowntrigger2').hover(
		function() {
			jQuery('#dropdowntwo').show();
		},
		function() {
			jQuery('#dropdowntwo').hide();
		}
	);
	
	jQuery('div.dropdowntrigger3').hover(
		function() {
			jQuery('#dropdownthree').show();
		},
		function() {
			jQuery('#dropdownthree').hide();
		}
	);
	
	jQuery('div.dropdowntrigger4').hover(
		function() {
			jQuery('#dropdownfour').show();
		},
		function() {
			jQuery('#dropdownfour').hide();
		}
	);

});

