jQuery(function($) {
	$(".video-gallery .jCarouselLite").jCarouselLite({
		btnNext: ".video-gallery .next",
		btnPrev: ".video-gallery .prev"
	});
	$(".testimonial-carusel-wrapp .testimonial-carusel").jCarouselLite({
		btnNext: ".testimonial-carusel-wrapp .next",
		btnPrev: ".testimonial-carusel-wrapp .prev"
	});

	$("#tabs").tabs({
		select: function(event, ui) {
	        document.location = $(document).attr('location').pathname + '#' + ui.panel.id;
    	}
	});

	$('#name')
		.focus(function(){if ($(this).val() == 'Name') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Name');} })

	$('#email')
		.focus(function(){if ($(this).val() == 'Email') {$(this).val('');} })
		.blur(function(){if ($(this).val() == '') {$(this).val('Email');} })
});
