$(function() {

	// Photofy Randomizer Partners Logo-List
    var myOptions = {
        imagecount: 8              }
    $("#logo-list").photofy(myOptions);

	// Cycle Slideshow
	$('#home-slides').cycle({
	    fx: 'fade',
	    timeout: '5000',
	    pause: 'true'
	});


	// Labelify
	$("#site-search input, #contact-form .text input, #contact-form .textarea textarea").labelify({
	  text: "label"
	});


	// http://j.mp/jquery-target-blank
	$('a[href^="http://"], a[rel="external"], a[href$=".pdf"]').attr({
		target: "_blank",
		title: "Opens in a new window"
	});


    // Show/Hide Tabbed Content
    var tabContainers = $('#tabbed-content .content');
    $('#tabbed-content .nav a').click(function () {

        tabContainers.addClass('hide').filter(this.hash).removeClass('hide');

        $('#tabbed-content .nav a').removeClass('active');
        $(this).addClass('active');

        return false;
    }).filter(':first').click();


	// Simple jQuery Dropdowns
	$("#header ul.nav li").hover(function(){

		$(this).addClass("hover");
		$('ul:first',this).css('visibility', 'visible');

	}, function(){

		$(this).removeClass("hover");
		$('ul:first',this).css('visibility', 'hidden');

	});

	$("#header ul.nav li ul li:has(ul)").find("a:first").append(" <em>&raquo;</em> ");


	// Facebook Feed
    $('#facebook-feed').fbWall({
        id:'sifeusa',
        accessToken:'231541633552458|3ade72cf4940a15d377c9205887158f1',
        showGuestEntries:false,
        showComments:false,
        max:2,
        timeConversion:12
    });


	//  Flickr Feed
	$('#flickr-feed').jflickrfeed({
		limit: 4,
		qstrings: {
			id: '49316271@N07'
		},
		useTemplate: false,
		itemCallback: function(item){
			$(this).append("<li><a href='" + item.link + "' target='_blank'><img src='" + item.image_m + "' alt='' height='160'/></a></li>");
		}
	});
	
	
	// Twitter Feed
	$("#twitter-feed").getTwitter({
		userName: "sifeusa",
		numTweets: 4,
		loaderText: "Loading tweets...",
		slideIn: false,
		slideDuration: 750,
		showHeading: false,
		headingText: false,
		showProfileLink: false,
		showTimestamp: true
	});


	// Fancybox
	$("#fancy-image").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
	});

	$("a.fancy-image").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
	});

	$("a.fancy-box").fancybox({
		'width'				: '65%',
		'height'			: '65%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'

	});
	$("a.video").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'titleShow'		: false,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});
		return false;
	});
	$("a.photo").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 550,
			'height'		: 400,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});
		return false;
	});

});
