$(document).ready(function()
{
    /**
     * Virtual tour stuff
     */
    $('.vt-item').hover(function()
    {
        $(this).children("div.vt-panel").addClass("vt-show");
        $(this).children("a.vt-pin").addClass("sel");
    }, function()
    {
        $(this).children("div.vt-panel").removeClass("vt-show");
        $(this).children("a.vt-pin").removeClass("sel");
    });
    
    $("a.vt-fancybox").fancybox();
    
    $("a.vt-fancybox-video").click(function()
    {
        $.fancybox({
            'padding' : 0,
            'autoScale' : false,
            'title' : this.title,
            'width' : 680,
            'height' : 495,
            'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type' : 'swf',
            'swf' : {
                'wmode' : 'transparent',
                'allowfullscreen' : 'true'
            }
        });
        
        return false;
    });

	$("a.vt-fancybox-iframe").click(function()
	{
		$.fancybox({
			'type' : 'iframe',
			'href' : $(this).attr("href"),
			'width': 420,
			'height' : 320,
			'scrolling' : 'no'
		});

		return false;
	});
});
