$(function() {
	// Rollover images
	$('.rollover').hover(function() {
        $(this).attr('src', $(this).attr('hover'));
    }, function() {
        $(this).attr('src', $(this).attr('original'));
	});
	
	// Rollover background images
	$('.bg_rollover').hover(function() {
        $(this).css('backgroundImage','url(' + $(this).attr('hover') + ')');
    }, function() {
        $(this).css('backgroundImage','url(' + $(this).attr('original') + ')');
	});
	
	$(".fancybox").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'	,
		'autoScale' : false
	});
	
	
	// POP UPS //
	$('.popup').live('click',function(){
		var url = $(this).attr('href');
		var wname = 'pf' + Math.floor(Math.random() * 1000);
	
		if(url){
			popup = window.open(url,wname,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=708,height=550');
			popup.moveTo(70,70);
		}
	
		return false;
	});
});
