/*
 *  jQuery Arts by Arwin Ortiz
 *  @v1.0
 */
//jQuery(document).ready(function($) {
$(document).ready(function() {
	//$('#info').css({position:'absolute',top:$(window).height()/2-175+'px',right:'0px'})
	if($("#info").length>0){
		$(window).scroll(function()
		{
			$('#info').animate({top:$(window).scrollTop()+200+'px'},{queue: false, duration: 'fast'}); 		
		});		
	}
	if($("a.iframe").length>0){
		$('a.iframe').fancybox({
			'hideOnContentClick': false,
			'frameWidth'		: 450,
			'frameHeight'		: 590,
			'zoomSpeedIn'		: 300, 
			'zoomSpeedOut'		: 300,
			'overlayShow'		: true
		});		
	}
	//$('.png').supersleight();	
	if($("a.zoom2").length>0){
		$("a.zoom2").fancybox({ 'frameWidth': 705, 'frameHeight': 430 });
	}
});
