    
    $().ready(function(){
        
        // external urls
        $('a').click(function(){
            if((this.href.match(/^http/i) && !this.href.match(location.host)) || this.rel=='external'){
                window.open(this.href,'_');
                return false;
            }
        });

		$('.deliveryHideAll').each(function(){ 
			$(this).hide();
		});

		$('.deliveryMore').click(function(){

			$(this).hide();
			$(this).next('span').slideDown(500);

		});

	$('#ccHelp').hover(      
	  function () {
        $('#ccHelpInfo').show();
		$('.ieProceed').css('margin-top','-40px');
      }, 
      function () {
        $('#ccHelpInfo').hide();
		$('.ieProceed').css('margin-top','15px');
      }
	 );


    });