jQuery(document).ready(function($) {	
		
		var q = jQuery.noConflict();
		
		q('ul.social li a').tipsy({gravity: 's'});
		q('.tipsy').tipsy({gravity: 's'});
		
		q('ul.sf-menu').superfish({
			delay: 400,
			animation: {opacity:'show',duraction:'0'},
			speed: 'fast',
			autoArrows: false,
			dropShadows: true,
		});		

		q('form.search input').focus(function() {
  			$(this).val('');
		});
		
		q("#gallery li").append("<span></span>");
		
        q("a[rel^='prettyPhoto']").prettyPhoto();        
});	
