$(document).ready(function() {

	$(this).bind("contextmenu", function(e) {
        e.preventDefault();
    });

	$('#menu li').mouseover(function() {
		$(this).find(".menu_left").attr("class","menu_left_on");
		$(this).find(".menu_text").attr("class","menu_text_on");
		$(this).find(".menu_right").attr("class","menu_right_on");
	}).mouseout(function() {
		$(".menu_left_on").attr("class","menu_left");
		$(".menu_text_on").attr("class","menu_text");
		$(".menu_right_on").attr("class","menu_right");
	});

	$('#formular_contact input,textarea').focus(function() {
		$(this).val('');
	}).blur(function() {

	});

	$("#abonare").click(function() {
		var email = $("input[name='email']").val();
		if(email == "") {
			alert('Nu ai completat adresa de email');
		}
		else {
			$.ajax({
			   type: "POST",
			   url: "ajax/ajax.php",
			   data: "act=abonare&email="+email+"",
			   success: function(msg){
			    if(msg == "1") {
			    	alert('Ai fost abonat cu succes!');
			    }
			    else {
			    	alert(msg);
			    }
			   }
			 });
		}
	});

	$('.select_filtru').change(function() {
		$('#form_filtre').submit();
	});


	$(".lightbox").lightBox();

});
