$(document).ready(function(){
	$(function() {
		$('.rollover').hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('title'));
			$(this).attr('title', currentImg);
		}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('title'));
			$(this).attr('title', currentImg);
		});
	});
	
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
			&& location.hostname == this.hostname) {
				var $target = $(this.hash);
				$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
				if ($target.length) {
					var targetOffset = $target.offset().top;
					targetOffset = targetOffset - 50;
					$('html,body').animate({scrollTop: targetOffset}, 1500);
					return false;
				}
			}
    });
	
	$("a[rel='graphic']").colorbox({transition:"fade"});
	$("a[rel='advertising']").colorbox({transition:"fade"});
	$("a[rel='arts']").colorbox({transition:"fade"});
	$("a[rel='cg-reel']").colorbox({transition:"fade"});
	$("a[rel='about-me']").colorbox({transition:"fade"});
	$("a[rel='resume']").colorbox({transition:"fade"});
	$("a[rel='contact']").colorbox({transition:"fade"});

});
