// JavaScript Document
$.noConflict();

jQuery(document).ready(function($) {




//PNG FIX
$(document).pngFix( );


//scroll to tje top
$('a[href=#top]').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
		return false;
});





//REMOVE ANY KIND OF STYLE ATTRIBUTE
$("#skypeCheckNotice").removeAttr("style")



//MENU
$('.moduletable_menu ul li a')
	.css( {backgroundPosition: "25px 0"} )
	.mouseover(function(){
	$(this).stop().animate({backgroundPosition:"(300px 0)"}, {duration:400})
})

.mouseout(function(){
	$(this).stop().animate({backgroundPosition:"(25px 0)"}, {duration:700, complete:function(){
	$(this).css({backgroundPosition: "25px 0"})
 }})
})



//jquery pop-up
$(".thumbnail-bg a").fancybox({
	'titlePosition' : 'over',
	'titleShow' : true,
	'zoomSpeedIn' : 600,
	'zoomSpeedOut' : 500,
	'transitionIn' : 'elastic',
	'transitionOut' : 'elastic',
	'easingIn' : 'easeOutBack',
	'easingOut' : 'easeInBack'
}); 




//cycle
$('#content_offers').cycle({ 
    fx:     'scrollUp', 
    easing: 'backinout',
	speed:    2000, 
	timeout: 6000, 
    delay:  -2000,
	random:  1,
	pause: 1
});

});

