$(document).ready(function() {
	// form functions
	if($('form.bandit-form').length) {
		// add focused class to input elements
		$('input, textarea, select').not('input[type="submit"]').blur(function() { 
			$(this).parent().parent().removeClass('focused');
		}).focus(function() {
			$(this).parent().parent().addClass('focused');
		});
	}
	// carouFredSel header
	if($('#caroufredsel-hdr').length) {
		$('#caroufredsel-hdr').carouFredSel({
			items: 5,
			auto: false,
			prev: "#scroll-prev",
			next: "#scroll-next",
			scroll: {
				duration: 600
			}
		});
		// make featured header li clickable
		$('#caroufredsel-hdr li').click(function() {
			var href = $(this).find("a").attr("href");
			if(href) {
				window.location = href;
			}
		});
	}
	// carouFredSel sidebar
	if($('#caroufredsel-sb').length) {
		$('#caroufredsel-sb').carouFredSel({
			items: 2,
			auto: false,
			prev: "#edgefp-prev",
			next: "#edgefp-next",
			scroll: {
				duration: 600
			}
		});
		// make featured sidebar li clickable
		$('.widget_bandit_edgefeaturedposts li').click(function() {
			var href = $(this).find("a").attr("href");
			if(href) {
				window.location = href;
			}
		});
	}
});
