jQuery.noConflict();
jQuery(document).ready(function($){ 
	$('a[rel="colorbox"]').colorbox({iframe:true, innerWidth:500, innerHeight:660});
	$('a[rel="colorboxSidebar"]').colorbox({iframe:true, innerWidth:500, innerHeight:660});

	$('.dropdown').each(function(){
		if($(this).children('li').hasClass('current_cat_item'))
			$(this).show();
		else $(this).hide();
	});
	
	$('a.drop').click(function(){
		$('.dropdown').hide();
		$('.dropdown').each(function(){
		if($(this).children('li').hasClass('current_cat_item'))
			$(this).show();
		});
		$(this).parents('li:eq(0)').children('ul:eq(0)').show();
	});
	
	$(document).pngFix();
	
	$('#nav li:first').css('border-top', '0');
	$('#nav li:first').css('background-color', '#FFFFFF');
	$('#nav li:first a').corner("bevel 4px tl").parent().css('padding', '2px 0 0 2px').corner("bevel 4px tl")
	$('#nav li:first').css('border-right', 'solid 2px #FFFFFF');
	
	if(!$('#nav li:first').hasClass('current_page_item')) $('#nav li:first a').css('background', '#7C8437');
	
	$('#nav li:first a').mouseover(function(){
		$('#nav li:first a').css('background', '#0098D0');
	}).mouseout(function(){
		if(!$('#nav li:first').hasClass('current_page_item')) $('#nav li:first a').css('background', '#7C8437');
	});
});