$(document).ready(function(){
	
	// TOP MENU
	$('#top .menu li a').click(function(){
		if ($(this).html() == 'Talk to us') {
			$('.bubble').fadeIn("fast");
			return false;
		}
	});
	$('.bubble-close').click(function(){
		$('#top .bubble').hide();
	});
	
	$('#top .menu li img').parent().mouseover(function(){
		$(this).css('background', 'none');
	});
	
	// 	
    $('.products').click(function(event){
    	event.stopPropagation();
        var ele = $(this).parent().find('.submenu');
        if (ele.is(':visible')) {
        	ele.hide();
        	$(this).removeClass('hover');
        } else {
        	$('.submenu').hide();
			$('.menu').find('.hover').removeClass('hover');
        	ele.show();
        	$(this).addClass('hover')
        }
    });
    
    $('body').click(function(){
		$('.submenu').hide();
		$('.menu').find('.hover').removeClass('hover');
	});
	
	
	
	// Video
	var enableVideo = true;
	
	$('#videoTour .youtube').click(function(){
		if (enableVideo) {
			$(this).parent().parent().html('<object width="624" height="375"><param name="movie" value="' + $(this).attr('href') + '"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="' + $(this).parent().attr('href') + '" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="624" height="375"></embed></object>');
			enableVideo = false;
			$(this).parent().css('outline', 0);
		}
		
		return false;
	});
	
	// Email
	var emailDefault = 'Email address';
	$('#iduydt-iduydt').val(emailDefault).focus(function() {
		if ($(this).val() == emailDefault) {
			$(this).val('');
		}
	}).blur(function(){
		if ($(this).val() == '') {
			$(this).val(emailDefault);
		}
	});
	
});
