$(document).ready(function() {
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
    $("a[rel^='prettyPhoto']").prettyPhoto();
    $('.slides').cycle({
        fx: 'fade',
        timeout: 5000,
        prev:    '#prev',
        next:    '#next',
        pager:   '#pages',
        pagerAnchorBuilder: pagerFactory
    });
    function pagerFactory(idx, slide) {
        var s = idx > 2 ? ' style="display:none"' : '';
        return '<a href="#">'+(idx+1)+'</a>';
    };
    $('ul.sf-menu').superfish({ 
        delay:       1000,                            			// one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  	// fade-in and slide-down animation 
        speed:       'fast',                          				// faster animation speed 
        autoArrows:  false,                           			// disable generation of arrow mark-up 
        dropShadows: false                            		// disable drop shadows 
    }); 
});
$(function(){ 
    // find all the input elements with title attributes
    $('input[title!=""]').hint();


});
