// Jquery with no conflict
jQuery(document).ready(function($) {
	
	// Poshytips ------------------------------------------------------ //
	
    $('.poshytip').poshytip({
    	className: 'tip-twitter',
		showTimeout: 1,
		alignTo: 'target',
		alignX: 'center',
		offsetY: 5,
		allowTipHover: false
    });
	
	// Poshytips Forms ------------------------------------------------------ //
    
    $('.form-poshytip').poshytip({
		className: 'tip-yellowsimple',
		showOn: 'focus',
		alignTo: 'target',
		alignX: 'right',
		alignY: 'center',
		offsetX: 5
	}); 
	
	// Transitions entre HTML ------------------------------------------------------ //
	
	$("body").css("display", "none");
 
    $("body").fadeIn(2000);
 
    $("a.transition").click(function(event){
        event.preventDefault();
        linkLocation = this.href;
        $("body").fadeOut(1000, redirectPage);
    });
 
    function redirectPage() {
        window.location = linkLocation;
    }

    
});

// WINDOWS NOTIFICATION
	$(document).ready(function()
	{	var i=0;
		$(window).scroll(function(){
				var distanceTop = $('#last').offset().top - $(window).height();
			
				if  ($(window).scrollTop() >= distanceTop)
				{	i++;
					if(i==1){
						setTimeout(function(){
								jQuery.noticeAdd({
									text: '<a href="promociones.php" style="color:#fff">PROMOCIÓN DISEÑO WEB</a> <a href="promociones.php"><img src="img/promociones/p1.jpg" border="0" /></a>',
									stay: false,
									stayTime: 2000
								});
						},500)
						setTimeout(function(){
								jQuery.noticeAdd({
									text: '<a href="promociones.php" style="color:#fff">PROMOCIÓN DISEÑO WEB</a> <a href="promociones.php"><img src="img/promociones/p2.jpg" border="0" /></a>',
									stay: false,
									stayTime: 3000
								});
						},1500)
						setTimeout(function(){
								jQuery.noticeAdd({
									text: '<a href="promociones.php" style="color:#fff">PROMOCIÓN DISEÑO WEB</a> <a href="promociones.php"><img src="img/promociones/p3.jpg" border="0" /></a>',
									stay: false,
									stayTime: 4500
								});
						},3500)
						setTimeout(function(){
								jQuery.noticeAdd({
									text: '<a href="promociones-hosting.php" style="color:#fff">PROMOCIÓN HOSTING</a> <a href="promociones-hosting.php"><img src="img/promociones/p4.jpg" border="0" /></a>',
									stay: false,
									stayTime: 6500
								});
						},5500)
						
					}
					
				}
									  
		});	
		
	});


