	var j = jQuery.noConflict();
    j(document).ready(function() { 
			et_top_menu();
		function et_top_menu(){
			j('ul.superfish').superfish({ 
				delay:       200,                            // one second delay on mouseout 
				animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
				speed:       'fast',                          // faster animation speed 
				autoArrows:  true,                           // disable generation of arrow mark-up 
				dropShadows: false                            // disable drop shadows 
			}).find('> li > a.sf-with-ul').parent('li').addClass('sf-ul');
		};

				j('ul.nav > li:last-child').css('background','none'); 
				
	 j("a[rel^='prettyPhoto']").prettyPhoto({

                padding: 40, 
                opacity: 0.60,
                show_title: false,
                autoplay_slideshow: false,
                counter_separator_label: '/', 
                theme: 'facebook',
                overlay_gallery: false,
                changepicturecallback: function(){},
                callback: function(){}
				});
				
			j(".small_shadow").css("background-image" , "url('<?php bloginfo('template_url'); ?>/images/preview_icon.png')");

			j(".small_shadow").find("img").hover(function(){
				j(this).stop().animate({ "opacity" : 0.3 }, 400);
			}, function() {
				j(this).stop().animate({ "opacity" : 1 }, 400);
			});


   j(".stripeMe tr:odd td").addClass("ArrowPink");
   j(".stripeMe tr:even td").addClass("Arrowblue");


			 //TABS INTERNAL
			 
			 //When page loads...
	j(".tab_contentInternal").hide(); //Hide all content
	j("ul.tabsInternal li:first").addClass("active").show(); //Activate first tab
	j(".tab_contentInternal:first").show(); //Show first tab content

	//On Click Event
	j("ul.tabsInternal li").click(function() {

		j("ul.tabsInternal li").removeClass("active"); //Remove any "active" class
		j(this).addClass("active"); //Add "active" class to selected tab
		j(".tab_contentInternal").hide(); //Hide all tab content

		var activeTab = j(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		j(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});



    }); 
	

	

