
  $(document).ready(function () {
	
	$('a').focus(function(){ this.blur();} );
	

$('.flexslider').flexslider({
	    animation: "slide",
		controlsContainer: ".flexslider-container",
		slideshowSpeed: 4500, 
		directionNav: true,
		controlNav: true,
		keyboardNav: true
			});
			
$('.realizacje_slider').flexslider({
	    animation: "slide",
		slideshowSpeed: 3500, 
		directionNav: false,
		controlNav: false,
		keyboardNav: true
			});			

$('.napisz_form input, .napisz_form textarea').click(function(){
	$(this).val('');
	$(this).prev('label').fadeIn();

});
	
$('textarea').autoResize({
    // On resize:
    onResize : function() {
        $(this).css({opacity:0.8});
    },
    // After resize:
    animateCallback : function() {
        $(this).css({opacity:1});
    },
    // Quite slow animation:
    animateDuration : 300,
    // More extra space:
    extraSpace : 40
});	

var aleft = "350px";
var atop = "170px";

$('.strony_int').css('top', atop, 'left:', aleft).animate({ top: "35px", left:"55px" }, 1500);
$('.sklepyonline').css('top', atop, 'left:',aleft).animate({ top: "70px", left:"530px" }, 1500);
$('.projektlogo').css('top', atop, 'left:',aleft).animate({ top: "115px", left:"150px" }, 1500);
$('.identyfi').css('top', atop, 'left:',aleft).animate({ top: "160px", left:"600px" }, 1500);
$('.pozycjonowanie').css('top', atop, 'left:',aleft).animate({ top: "230px", left:"30px" }, 1500);
$('.marketingint').css('top', atop, 'left:',aleft).animate({ top: "280px", left:"500px" }, 1500);
$('.aktualizacja').css('top', atop, 'left:',aleft).animate({ top: "350px", left:"250px" }, 1500);


$(".start_ofer a").mouseenter(function() {
var id = $(this).attr("rel");
$(".bg_strony_"+id).fadeIn(700);
	
	 $(this).mouseleave(function() {
	$(".bg_strony_"+id).fadeOut(400);
	$(".bg_strony_"+id).mouseleave(function() {
			$(this).hide();								
							}); }); });							

  
  $(".zakres_uslug_box a").hover(function() {
		    $(this).stop().animate({ marginRight: "25px" }, 300);
		},function(){
		    $(this).stop().animate({ marginRight: "0px" }, 800);
		});
  
  $('.item_image').mouseenter(function() {
		var id = $(this).attr("id");
		$("."+id).html("<div class='real_overlay'></div><div class='center_overlay'></div>");
		$(".real_overlay, .center_overlay").fadeIn();
		$(this).mouseleave(function() {
				$(".real_overlay, .center_overlay").fadeOut();
				$("."+id).html("");	
		});
									  });
  
$("#interesuje_mnie .button").click(function(){
		var src = $(this).attr('rel');
		$("#interesuje_mnie .button").css("background","#00a0e4");
		$(this).css("background","#333333");
		
		$("#wycena_box").load("spages/wycena/"+src+".w.php");

									  }); 
									  
$("#oferta_button").hover(function() {
	$(".dropdown_menu").delay(200).slideDown();
	
	if($(".dropdown_menu").is(':visible')) {
	$(".dropdown_menu").mouseleave(function() {
				$(this).slideUp();
		});
	}
});

$("#start_button, #idea_button, #realizacje_button, #info_button").hover(function() {
	$(".dropdown_menu").slideUp();
});
  
  
  });

