jQuery(document).ready(function($) {

//show these items
showlistarray = ["children","foodflowers","animals"];

//hide by default
$("#subitems").toggle(false);
$("#shoplinks").toggle(false);

//for auto toggle of sub list
if ($.inArray(current_page, showlistarray)!=-1) {
	$("#subitems").toggle(true);
} else {	
	$("#subitems").toggle(false);
};

//for toggling sub list
$("#portfoliolist").click(function(event) {
	event.preventDefault();
  $('#subitems').toggle(400, function() {
    // Animation complete.
  });
});


//for toggling shop links 
$("#shopitem").click(function(event) {
	event.preventDefault();
  $('#shoplinks').toggle(400, function() {
    // Animation complete.
  });
});


//for highlighting of the current page
current_page_item = current_page + "item"
$('li').each(function(index) {
    if (current_page_item == $(this).attr("id")) {
		$(this).addClass("current");
	};
});

//to open rel links in new window
$("#shoplinks a").attr('target', '_blank');
$(".external").attr('target', '_blank');
});
