
// Forms: focus IN
$(document).ready(function() {  
	$('#search_input').add('input#name').add('input#country').add('input#email').add('textarea#message').add('input#security_code').add('input#username').add('input#password').focusin(function(){
		$('#search_submit').add(this).animate({ borderTopColor: "#fac400", borderLeftColor: "#fac400", borderRightColor: "#fac400", borderBottomColor: "#fac400" }, 600);
	});
});

// Forms: focus OUT
$(document).ready(function() {  
	$('#search_input').add('input#name').add('input#country').add('input#email').add('textarea#message').add('input#security_code').add('input#username').add('input#password').focusout(function(){
		$('#search_submit').add(this).animate({ borderTopColor: "#1e1e1e", borderLeftColor: "#1e1e1e", borderRightColor: "#1e1e1e", borderBottomColor: "#1e1e1e" }, 1200);
	});
});

// Sidebar items
$(document).ready(function() {  
	$('#right_c ul li ul li').add('#footer div.widget ul:not(.social_icons) li').not('#right_c ul li.ads_sidebar ul li').hover(function(){
		$(this).stop().animate({paddingLeft: '8px'},{queue:false,duration:300});
	}, function() {
		$(this).stop().animate({paddingLeft: '0px'},{queue:false,duration:300});
	});
});

// ?
$(document).ready(function() {  
	$('#ev_pagenavi a').hover(function(){
		$(this).stop().animate({ borderTopColor: "#fac400", borderLeftColor: "#fac400", borderRightColor: "#fac400", borderBottomColor: "#fac400" }, 600);
	}, function() {
		$(this).stop().animate({ borderTopColor: "#1e1e1e", borderLeftColor: "#1e1e1e", borderRightColor: "#1e1e1e", borderBottomColor: "#1e1e1e" }, 1200);
	});
});

// Image Swap
$(document).ready(function() {
	
	$.fn.preload = function() {
	    this.each(function(){
	        $('<img/>')[0].src = this;
	    });
	}
	
	var imgSwap = [];
	$(".for_preload").each(function() {
		imgUrl = this.href;
		imgSwap.push(imgUrl);
	});
	$(imgSwap).preload();
	
	$("#viewImage_thumbs a").click(function() {
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		$("#largeImg").attr({ src: largePath, alt: largeAlt });

		if ($(this).css("border-top-width") == "0px") {
			$("#viewImage_thumbs a").animate({borderTop: "0"}, 160);
			$(this).animate({borderTop: "5px solid #fac400"}, 400);
		}
		return false;
	});
})

// General cooding
$(document).ready(function() {
	
	// Superfish
	$("ul.sf-menu").superfish({
		autoArrows:  false, // disable generation of arrow mark-up
		animation: {height:'show'},
		delay: 600,
		speed: 'fast'
	});
	
	// FancyBox
	$("ul.portfolio li a").fancybox({
		helpers: {
			title: {
				type: 'inside'
			}
		}
	});
	$(".fancybox-single").fancybox({
		openEffect  : 'elastic',
		closeEffect : 'elastic',
		closeClick : 'true',
		extended    : false,
		helpers: {
			title: {
				type: 'inside'
			},
			overlay: {
				opacity: 0.8
			}
		}
	});
		
	// ScrollTo
	$('a[href^="#"]').click(function () {
		if ($(this).attr('href').length == 1) {
			$.scrollTo(0, 'slow');
		} else {
			$.scrollTo($('a[name='+$(this).attr('href').substring(1)+']'), 'slow');
		}
		return false;
	});
	
	// Scroll floating	
	$(window).scroll(function() {
		$('.portfolio_floatnav')
			.stop()
			.animate({top: $(document).scrollTop()}, 'slow', 'easeOutBack');
	});
	
});


	

