function openPopup(theURL,winName,features) {
  window.open(theURL,winName,features);
}
function switchChildName(newChildName) {
	document.all.child_name.innerHTML = newChildName;
}

/** Start Brands Nav Scroll **/

$(document).ready(function() {
		  
	var brandsHeight = $("#brandScroll ul").height();
	  
	  $("#viewMoreBtn").click(function(){
			$(this).css('display','none');
			$("#viewLessBtn").css('display','block');
			$("#brandScroll").animate	({
										 height:brandsHeight
										 },1000,function(){});
			
		});
		$("#viewLessBtn").click(function(){
			$(this).css('display','none');
			$("#viewMoreBtn").css('display','block');	
			$("#brandScroll").animate	({
										 height:'350px'
										 },1000,function(){});
		});
	  
	  
});

/** End Brands Nav Scroll **/	  
