// remap jQuery to $
// (function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	$(window).load(function() {
		$('.home #bannerImage').orbit({
			animation: 'fade',
			bullets: true
		});
	});

	// Clear searchbar value onfocus.
	$(".searchField").focus(function() {
		if ($(this).val() == $(this)[0].defaultValue) {
			$(this).val('');
		}
	}).blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this)[0].defaultValue);
		}
	});

	// Center wide thumbnail images.
	$('img.thumb.wide.center').each(function(){
		var parentWidth = $(this).parent().width();
		$(this).css('left', '-' + (((this.width)-parentWidth)/2) + 'px').css('position', 'relative');
	});

	$(".helpWindow").fancybox({
		'width': 595,
		'height': 160,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayOpacity': 0.5,
		'overlayColor': '#000',
		'type': 'iframe'
	});

	$("a.vidpop").fancybox({
		'width': 650,
		'height': 620,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayOpacity': 0.5,
		'overlayColor': '#000',
		'type': 'iframe'

	});

	$("a.vidpop2").fancybox({
		'width': 600,
		'height': 465,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayOpacity': 0.5,
		'overlayColor': '#000',
		'type': 'iframe'

	});

	

});


/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
