$(document).ready(function() {
	
	$('#nav ul li').hover(
	    function() { $('ul', this).css('display', 'block'); },
	    function() { $('ul', this).css('display', 'none'); }
	);

	$('a[rel=gallery]').colorbox({
		transition:'elastic'
	});
	
	$('#modal_form').colorbox({
		iframe:true,
		height:"80%",
		width:"50%"
	});

	$('.submitlink').click(function() {
		$(this).parents('form').submit();
	});
	
});

function sort_results(dom_wrapper, dom_item, sort_by, sort_dir) {
    if (sort_dir != 'desc') { sort_dir = 'asc'; }
    var num_per_col = $('#num_per_col', dom_wrapper).text();
    $(dom_wrapper+'>div.clear').remove();
    $(dom_item).tsort(sort_by, {order:sort_dir});
    $(dom_item).each(function(i) {
        if ((i+1)%num_per_col == 0) {
            $(this).after('<div class="clear"></div>');
        }
    });
}
