

	$(document).ready(function() {
		// suckfish drop down
		$('#navigation ul').superfish({ 
			delay:       50,                             // one second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
		});
		$('#navigation ul ul li').bgiframe();	
		
		$("#search-results ul.list li:odd").addClass("zebra");
		$("#search-results ul.list li:last").css("margin-bottom", "0");
		$("#search-results ul.list li:last").css("height", "110px");
		
		// fixing IE issues
		$(".module-tabs #pc-buying").fadeOut();
		$(".module-tabs #pc-buying").fadeIn();
		
		// tab handlers
		$(".module-tabs").tabs({ fxFade: true});    	
		$('#search-results__').tabs({
			fxFade: true,
			fxSpeed: 'fast',
			onShow: function() {
				if ( $.browser.msie && $.browser.version == 6.0 ) {
					var containerHeight = $('.container').height();
					$('.container-bl').css('top',(containerHeight-6)+'px');
					$('.container-br').css('top',(containerHeight-6)+'px');
				}
			}
		});
		
		// fixing container height issue on ie6		
		if ( $.browser.msie && $.browser.version == 6.0 ) {
 			var containerHeight = $('.container').height();
			$('.container-bl').css('top',(containerHeight-6)+'px');
			$('.container-br').css('top',(containerHeight-6)+'px');
		}

        
	});
