
/*****************************************************
 * WHORIZONTAL JQUERY LOVIN' IN HERE!                *
 *                                                   *
 *                                                   *
 *                                                   *
 ****************************************************/


$(document).ready(function(){

	// Proof Tabs
	$('.proofTabs').hover(function(){
		var thisTab = $(this);
		var moveTab = thisTab.children('.proofLink');
		if (thisTab.hasClass('rightTab')){
			moveTab.stop().animate({'margin-left':'15px'}, 300);
		} else {
			moveTab.stop().animate({'margin-left':'0px'}, 300);
		}
	}, function(){
		var thisTab = $(this);
		var moveTab = thisTab.children('.proofLink');
		if (thisTab.hasClass('rightTab')){
			moveTab.stop().animate({'margin-left':'0px'}, 300);
		} else {
			moveTab.stop().animate({'margin-left':'15px'}, 300);
		}
	});

	// Photo Credit Icon Rollovers
	$('.photoIcon').hover(function(){
		var thisPho = $(this);
		var thisCred = thisPho.children('.creditInfo');
		thisCred.stop().fadeTo(300,'1', function(){
			if (jQuery.browser.msie && jQuery.browser.version < 9) {
			  this.style.removeAttribute('filter');
			};
		});
		thisPho.css('width','auto');
		thisCred.css('width','auto');
	}, function(){
		var thisPho = $(this);
		var thisCred = thisPho.children('.creditInfo');
		thisCred.stop().fadeTo(300,'0', function(){ 
			$(this).hide();
			thisPho.css('width','11px');
		});
	});

});
