$(function() {


	// Slideshow Cycle Plugin
	$('#slideshow').cycle({ 
	    fx:    'fade', 
	    timeout:  8000 
	 });

	// http://j.mp/jquery-target-blank
	$('a[href^="http://"], a[rel="external"], a[href$=".pdf"]').attr({
		target: "_blank",
		title: "Opens in a new window"
	});

	// Labelify
	$("#login-form input").labelify({
	  text: "label"
	});
	

	// Toggle View
    $('#toggle-view li').click(function () {
 
        var text = $(this).children('p');
 
        if (text.is(':hidden')) {
            text.slideDown('200');
            $(this).children('span').html('-');    
        } else {
            text.slideUp('200');
            $(this).children('span').html('+');    
        }
         
    });

});




















