$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto({
        show_title: false,
        social_tools: false,
        deeplinking: false,
        theme: 'light_square'
    });
    
    $('.inline.form .collapsed').hide();
    $('.inline.form .toggler').click(function () {
        $('.inline.form .collapsed').slideToggle('slow');
        return false; 
    });
    
    $('.inline.form input').tooltip({
	// place tooltip on the right edge
	position: "top center",

	// a little tweaking of the position
	offset: [-10, 0],

	// use the built-in fadeIn/fadeOut effect
	effect: "fade",

	// custom opacity setting
	opacity: 0.7
    });
});
