$(document).ready(function() {

	$('.carousel .carouselImages').carousel({effect: 'fade', loop: true, autoSlide: true, autoSlideInterval: 5000, delayAutoSlide: 2000});

	
	//$('#subMenu').animate({height: "toggle"}, 1000);
	
	$(".galleryThumb").hover(
		function() {
			$(this).next().fadeIn('fast');
			$(this).parent().css('z-index','99');
		},
		function() {
			$('.galleryThumbHover').fadeOut('fast');
			$(this).parent().css('z-index','10');
		}
	);
	
	$('#torpedo').click(function() {
		$(this).find('img').attr('src','../images/submenu-bringa-01.png');
		//$('.rapid, .royal').fadeOut('slow');
		$('.rapid, .royal').animate({opacity: 0.2}, 800);
	});
	
	$('.prodBuy').hover(
		function() {
			//$(this).animate({left:'+=5px'}, 400);
		},
		function() {
			//$(this).animate({left:'-=5px'}, 400);
		}
	);
	
	$('.prodPic').hover(
		function() {
			$('.prodGal').animate({bottom:'+=80px'}, 400);
		},
		function() {
			$('.prodGal').animate({bottom:'-=80px'}, 400);
		}
	);
	
	$('.prodGal img').click(
		function() {
			$('.prodPicSelected img').attr('src', $(this).attr('src'));
			return false;
		}
	);
	
	$('.content table tr:odd').css('background-color','#e5e5e5');
	
	$("#fb_login_link").fancybox({
				'titlePosition'		: 'outside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
	});
	
	$("#fb_webshop_link").fancybox({
				'titlePosition'		: 'outside',
				'transitionIn'		: 'none',
				'transitionOut'		: 'none'
	});
	
	$('#login_form').submit(function() {
		$.post("inc/login.ajax.php", { login_user: $('#login_user').val(), login_pass: $('#login_pass').val() },
   		function(data){
     		if(data=='1') {
     			window.location.href=window.location.href;
     		} else {
     			$('#login_error').replaceWith('Rossz felhasználónév vagy jelszó!');
     		}
   		});
		return false;
	});
	
	$('#order_form_paypal').submit(function() {
		var f_prod=$("#of_prod").val();
		var f_type=$('input[name=prod_type]:checked').val();
		var f_payment=$('input[name=prod_payment]:checked').val();
		var f_price=$("#of_price").val();
		var f_nev=$("#of_nev").val();
		var f_email=$("#of_email").val();
		var f_mobil=$("#of_mobil").val();
		var f_cim=$("#of_cim").val();
		var f_megj=$("#of_megj").val();
		$.post("inc/order_paypal.ajax.php", { prod: f_prod, type: f_type, nev: f_nev, email: f_email, mobil: f_mobil, cim: f_cim, megj: f_megj, payment: f_payment, price: f_price },
   		function(data){
     		$('#fb_webshop_msg').html(data);
   		});
		return false;
	});
	
	$('#order_form').submit(function() {
		var f_prod=$("#of_prod").val();
		var f_type=$('input[name=prod_type]:checked').val();
		var f_nev=$("#of_nev").val();
		var f_email=$("#of_email").val();
		var f_mobil=$("#of_mobil").val();
		var f_cim=$("#of_cim").val();
		var f_megj=$("#of_megj").val();
		$.post("inc/order.ajax.php", { prod: f_prod, type: f_type, nev: f_nev, email: f_email, mobil: f_mobil, cim: f_cim, megj: f_megj },
   		function(data){
     		$('#fb_webshop_msg').html(data);
   		});
		return false;
	});
	
});

function logout() {
	$.post("inc/login.ajax.php", { login_logout: "1" } );
	window.location.href=window.location.href;
}
