$(function() {

// PNG fix
$('html').pngFix();

// highlight current page
var pathname = (window.location.pathname.match(/[^\/]+$/)[0]);
$("#nav a").removeClass("current");

$("#nav a[href='" + pathname  + "']").addClass("current");
$(".dropdown a[href='" + pathname  + "']").parent().parent().parent().find('a:first').addClass("current");

$("#submenu a[href='" + pathname  + "']").parent().addClass("current");


// go to url when clicked on list

$('#submenu > ul > li').click(function() {
	var getURL = $(this).find('a').attr("href");
	window.location = getURL;
}); 


// hide links and buttons
//$('#btn_selling').hide();
//$('#btn_selling2').hide();

});
