$(document).ready(function() { 
    $(".iframe").fancybox({
		'hideOnContentClick': false,
		'showCloseButton': true,
		'width': 600,
		'height': 550
	});

	$("a#details_pop").fancybox({
		hideOnContentClick: false,
		showCloseButton: true,
		autoDimensions: false,
		titleShow: false,	
		width: 600,
		height: 600,
		scrolling: 'no',
		padding: 0,
		transitionIn: 'fade',
		transitionOut: 'fade',
		overlayOpacity: 0.7,
		overlayColor: '#000000'
		/*onComplete: function() {$("#details iframe").attr('src',$("#details iframe").attr('rel'));},
		onCleanup: function() {$("#details iframe").attr('src','')}*/
	});
    $("a#signup_pop").fancybox({
		hideOnContentClick: false,
		showCloseButton: true,
		autoDimensions: false,
		titleShow: false,	
		width: 350,
		height: 300,
		scrolling: 'no',
		padding: 0,
		transitionIn: 'fade',
		transitionOut: 'fade',
		overlayOpacity: 0.7,
		overlayColor: '#000000'
	});
		
	/*$("img").hover(
		function() {this.src = this.src.replace("_off","_over");},
		function() {this.src = this.src.replace("_over","_off");}
	);*/
    
    
    $('#cycle')
    .after('<div id="cycle_prev"><img src="/img/prev_arrow.png"></div>')
    .after('<div id="cycle_next"><img src="/img/next_arrow.png"></div>') 
    .after('<div id="pageNav">') 
    .cycle({ 
        fx:     'fade', 
        speed:  'fast', 
        timeout: 10000,
        next:   '#cycle_next',
        prev:   '#cycle_prev',
        pager:  '#pageNav'
    });
    

});

function closeWindow(){
        $.fancybox.close();
}
