$(document).ready(function(){
	$('a[rel=external]').attr('target', '_blank');
	$('#gallery,#left,#right').css('display','block');
	$('#gallery').cycle({ 
		fx:     'scrollHorz', 
		speed:  500, 
		next:   '#right',
		easing: 'easeInOutQuad',
		prev:   '#left'
	});
	$('.rollover').hover(
		function(){this.src = this.src.replace('inactive','active');},
		function(){this.src = this.src.replace('active','inactive');}
	);
	$('#gallery img').click(function(){
		if($(this).is('.rollover')){
			window.open(this.alt);
			return false;
		}
    });
  
    $.preLoadImages('-/img/structure/active/email.png','-/img/structure/active/facebook.png','-/img/structure/active/flickr.png','-/img/structure/active/gowalla.png','-/img/structure/active/lastfm.png','-/img/structure/active/left.png','-/img/structure/active/linkedin.png','-/img/structure/active/right.png','-/img/structure/active/twitter.png','-/img/structure/active/vimeo.png','-/img/gallery/active/imagewest.png','-/img/gallery/active/my_wku.png','-/img/gallery/active/mydvdshelf.png','-/img/gallery/active/otwss.png','-/img/gallery/active/pcal.png');
});