//functions

 $(document).ready(function()
{

//banner
$("div.bannerox").click(function()
{
   var newWindow = window.open('http://yesweb.ro/web-design-creare-site-prezentare.html', '_parent');
   newWindow.focus();
   return false;
})

$("div.bannerox").fadeIn(300);

$("div.bannerox").animate({marginTop: "500px"},1500);
$("div.bannerox").animate({marginTop: "450px"},300);
$("div.bannerox").animate({marginTop: "500px"},300);
$("div.bannerox").animate({marginTop: "470px"},500);
$("div.bannerox").animate({marginTop: "500px"},500);

$("div.closebannerox").click(function()
{

$("div.bannerox").fadeOut(300);
return false;
})

//banner


 $("div.meniu a").hover(function()
 {

  $(this).animate({"opacity": "0.5"});
   $(this).animate({"opacity": "1"});
return false;
 })


 $("div.socials a").hover(function()
 {
 $(this).animate({"opacity": "0.5"});
   $(this).animate({"opacity": "1"});
return false;

 })




$('#coferta').click(function() {
$("#formularx").fadeIn(200);
});

$('div.closef').click(function() {
$("#formularx").fadeOut(200);
});


});

//end
