$(document).ready(function() {

	$("#menu li").hover(
		function () {
			$(this).find('img.h_off').css('display', 'none');
			$(this).find('img.h_on').css('display', 'block');
			$(this).find('ul.sub_menu').css('display', 'block');
		}, 
		function () {
			$(this).find('img.h_on').css('display', 'none');
			$(this).find('img.h_off').css('display', 'block');
			$(this).find('ul.sub_menu').css('display', 'none');
		}
	);
	
	if ($('.home_gallery_images').length !=0) {
		$('.home_gallery_images').cycle({
			fx: 'scrollHorz', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout: 8000,
			speed:300,
			next: '.arrow_next'
		});	
		
	}
    	
	var timeout_id;
	
	$(".vegetables_area").hover(
		function () {
			//$(this).css('background', 'url(./images/popup_icon.png) no-repeat 50% 50%');
			if ( $.browser.msie ) {
				$(this).find('.popup').addClass('visible');
			} else {
				$(this).find('.popup').fadeIn('slow');
			}

		}, 
		function () {
			if ( $.browser.msie ) {
				$(this).find('.popup').removeClass('visible');
			} else {
				$(this).find('.popup').fadeOut('slow');
			}
		}
	);
	
	$(".home_gallery_images a").hover(
		function () {
			$(this).find('.hover_on').css("display", "block");
		}, 
		function () {
			$(this).find('.hover_on').css("display", "none");
		}
	);
	
	$(".tabs_menu li, .tabs_menu_pr li").hover(
		function () {
			$(this).addClass("tab_hovered");
		}, 
		function () {
			$(this).removeClass("tab_hovered");
		}
	);	
	
	$('#send-form #send_image').click(function() {
		$('#email_image').submit();
		return false;
	});


});
