/**
 * @author adam
 */

$(document).ready(function() {
	
	$('.zreflect').reflect({height: 0.5, opacity: 0.4});

	// Strict XHTML hack
	$('a.blank').each(function() {
	    var link = $(this).attr('href');
	    $(this).attr('href', REL_ROOT+PAGE+"/"+SID+'#');
	    $(this).click(function() {
	        window.open(link);
	    });
	});
	
	if (SID !== "web_design") {
		$('.services_img').fancybox({
			"frameHeight": 500,
			"overlayOpacity": 0.8,
			"callbackOnClose": function(){
				if (SID == "video_motion") {
					window.location.reload(true);
				}
				$('#dragme').remove();
				
			},
			"callbackOnStart": function(){
				$("#fancy_outer").prepend('<span style="font-size:0.8em;color:#eee;" id="dragme">Drag Me!</span>').css('cursor', 'move').draggable();
			}
		});
	}
});
