//var $J = jQuery.noConflict();
jQuery(document).ready(function(){

	$('.item_pic').cornerz({radius:12, background: '#f8fefe'});
	$('.items_holder').find('.item_pic').each(function(){
		var img = $(this).find('a img');
		img.css('margin-top', ( $(this).height() - img.height() ) / 2 + 'px');
	})
	$('.item_table tr:odd').addClass('odd');
	
	
	$('#menu a.group').click(function(){
		if ( !$(this).next('ul:visible').length ) {
			var e = $(this).next('ul.submenu').slideDown();
			$('#menu .submenu:visible').not(e).slideUp();
		} else {
			$(this).next('ul.submenu').slideUp();
		}
		return false;
	});
	
	$('a[href$=".jpg"], a[href$=".jpeg"], a[href$=".gif"], a[href$=".png"]').not('[rel="lightbox"]').each(function(){
		$(this).attr('title', $(this).text());
	}).slimbox();
});

$(window).resize(function(){
	
});

