$(document).ready(function($) { 

// MENU DROP DOWN

$('#mainmenu ul li').find('ul').hide();

$('#mainmenu ul li').hover(function() {
		$(this).find('ul:first').delay(0).show('fast');
		}, function() {
			$(this).find('ul:first').delay(0).slideUp('fast');
		});


	

// STYLE MENU TOP LEVEL PARENT ITEM
$('#mainmenu ul ul').hover(function() {
		$(this).parent().find('a:first').addClass('parent-menu');
		}, function() {
			$(this).parent().find('a').removeClass('parent-menu');
		});	
		

// CATOLOGUES IN MENU
$('.shop-menu').append($('.top-menu-dump .catalogueitemdump'));

// PRACTITIONER SEARCH
$('#Postcode_10123').live('focus', function() {   
  $('.pcode-country').fadeIn(500);
});
$('#Postcode_10123').live('blur', function() {   
  
  if ($('#Postcode_10123').val() == '') {
	  $('.pcode-country').fadeOut(500);
	  }
});

$('.adv-prac-search').live('click', function() {   
  $('.adv-prac-search-fields').slideToggle(500, function() {
     if ($('.adv-prac-search-fields').css('display') == 'block') {
	 	$('.adv-prac-search span').text('Hide');
	 }
	 else {
		$('.adv-prac-search span').text('Show');	 
	 }
  });
});

// COLORBOX
	$("a[class='popup-image']").colorbox({transition:"fade", width:"85%", height:"85%"});

// BLOG
$('.blog-post:nth-child(odd)').addClass('style1');
$('.blog-post:nth-child(even)').addClass('style2');
$('.blog-post:nth-child(4n)').addClass('style3');

if ($('.pagination').text() == '') {
	$('.pagination').hide();
	}

// GENERAL
$('img[src=""]').css('display', 'none');

if (document.location.href.indexOf("Default.aspx?PageID=5973466") != -1){
	$('.logged1').delay(1000).fadeOut(2000).css('background-color', '#FF6');
}

});

