﻿<!--
$(document).ready(function() {
	$('.home').append('<div class="home_ro"><\/div>');
	$('.home').hover(
		function() {
			$(this).children('div').fadeIn(500);
		}, 
		function() {
			$(this).children('div').fadeOut(500);	
	});
	$('.about').append('<div class="about_ro"><\/div>');
	$('.about').hover(
		function() {
			$(this).children('div').fadeIn(500);
		}, 
		function() {
			$(this).children('div').fadeOut(500);	
	});
	$('.heli').append('<div class="heli_ro"><\/div>');
	$('.heli').hover(
		function() {
			$(this).children('div').fadeIn(500);
		}, 
		function() {
			$(this).children('div').fadeOut(500);	
	});
	$('.firebox').append('<div class="firebox_ro"><\/div>');
	$('.firebox').hover(
		function() {
			$(this).children('div').fadeIn(500);
		}, 
		function() {
			$(this).children('div').fadeOut(500);	
	});
	$('.contact').append('<div class="contact_ro"><\/div>');
	$('.contact').hover(
		function() {
			$(this).children('div').fadeIn(500);
		}, 
		function() {
			$(this).children('div').fadeOut(500);	
	});
	
	$('#menu li').hover(function() {
		$(this).children('#submenu').slideDown(500);
	},
	function() {
		$(this).children('#submenu').slideUp(200);
	});
});

//-->

