$(document).ready(function() {  
	$('.nav').hover(function() {
			$(this).attr("src", $(this).attr("src").split(".").join("_over."));
		}, function() {
	    	$(this).attr("src", $(this).attr("src").split("_over.").join("."));
	});
	
	$.fn.colorbox.settings.contentCurrent = "{current} / {total}";
	$.fn.colorbox.settings.contentPrevious = "PREV";
	$.fn.colorbox.settings.contentNext = "NEXT";
	$.fn.colorbox.settings.modalClose = "CLOSE";
	
	$("a[rel='bbpop']").colorbox({transition:"elastic", open:true});
	
	$('#scrollThis').cycle({
		prev: '#prev',
		next: '#next',
		timeout: 0
	});
	
	$("a[rel='gallery']").colorbox({transition:"elastic"});
	
});

function openWin(url) {
	window.open(url,'_blank','left=200,top=200,width=640,height=480,toolbar=0,resizable=0,scrollbars=1');
}

