// JavaScript Document
$(function()
{	
	$(".navigation ul li:first-child").addClass("firstChild");
	$(".TopNavigationPane ul li:nth-child(7n)").children("a").addClass("seventhChild");
	$(".FooterPaneWrapper ul li:nth-child(8n)").children("a").addClass("eightchild");

	

});






// image centr
$(document).ready(function()
{
 reorderImages();
});


 function reorderImages() 
 {
        $('.sub-list-top').each(function() {
            var h = $(this).height();
            var ih = $(this).children('img').height();
            var mt = h - ih;
            var amt = mt / 1
         $(this).children('img').css('margin-top', amt);
        });
 }





