/* the common stuff to do on page load */
$(document).ready(function() { 
	
	/* link handler */ 
	$('a.ext').click(function(){ window.open(this.href); return false; });
    $('a[href$=".pdf"]').click(function(){ window.open(this.href); return false; });
    
    /* making the drop down boxes look all purty */
    $('form select').sSelect();
    
    /* auto-submit the search stuff */
    $('.search-box form input').hide();
    $('.search-box form.style select').change(function(){ $('.search-box form.style input').click(); });
	$('.search-box form.type select').change(function(){ $('.search-box form.type input').click(); });

    
    /* addding a span to all h2's */
    $('#main .content .from-user h2').addClass('lined').wrapInner('<span></span>');
});
