$(document).ready(function() {

     $('ul.sf-menu').supersubs({ 
  
            maxWidth:    21,   
            extraWidth:  1     
                              
        }).superfish(); 
                        
						
    $('input[placeholder], textarea[placeholder]').placeholder();
	

	//Initiate the toggle(show/hide) function for the Widget
   function toggleWidgets() {
	$('.widget-sidebar h3, .widget-footer h3').addClass('plus');

	$('.widget-sidebar h3, .widget-footer h3').click(function() {
		$(this).toggleClass('plus').toggleClass('minus').next().slideToggle(500);
	});

}
toggleWidgets();


$('.tooltips').tooltipsy({
    alignTo: 'cursor',
    offset: [10, 10],
    css: {
        'padding': '10px',
        'max-width': '200px',
        'color': '#303030',
        'background-color': '#f5f5b5',
        'border': '1px solid #deca7e',
        '-moz-box-shadow': '0 0 10px rgba(0, 0, 0, .5)',
        '-webkit-box-shadow': '0 0 10px rgba(0, 0, 0, .5)',
        'box-shadow': '0 0 10px rgba(0, 0, 0, .5)',
        'text-shadow': 'none'
    }
});


});
