// JavaScript Document
$(function() {
		$(".list tr:nth-child(odd)").addClass("odd");
		$(".list tr:nth-child(even)").addClass("even");
       
		$("A.external").click( function() {
        	window.open( $(this).attr('href'), 'external_w' );
        	return false;
        });
		
		$('#header').bind('click', function() {
			window.open("index.php", '_self');
		});
		 
		$('a.lightbox-album').lightBox(); // Select all links with lightbox class 
		
		$('div#content> div.faq_A').hide();
   
	    $('div#content> div.faq_Q').css({cursor:'pointer'}).click(function() {
		   $(this).next('div').slideToggle('fast')
		   .siblings('div.faq_A:visible').slideUp('fast');
	    });
		
		 
 		$("#styledropdown").autocomplete("incs/_get_searchstyles.php", {
 			delay:10,
			minChars:1,
			matchSubset:1,
			matchContains:0,
			cacheLength:10,
			maxItemsToShow:10,  
			autoFill:false
 
	});	
		 
});
 