// JavaScript Document
$(document).ready(function(){
		var slider = $('#slider1').bxSlider({
			controls: false,
			auto: true
			});
		
			$('.thumbs a').click(function(){
            var thumbIndex = $('.thumbs a').index(this);
            slider.goToSlide(thumbIndex);
            $('.thumbs a').removeClass('pager-active');
            $(this).addClass('pager-active');
            return false;
        });
        	$('.thumbs a:first').addClass('pager-active');
		
//Caption Sliding (Partially Hidden to Visible)
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'-196px'},{queue:false,duration:500});
				});
			});
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//biggerlink
 $('#wrapper #wrapin #main .leftcolumn .cover boxcaption').biggerlink();
