jQuery(document).ready(function(){
	
	jQuery('.bannerList li:first-child').show();
	
	jQuery('.bannerList').cycle({
		ex: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...         
        speed:  'slow', 
        timeout: 7000, 
        pager:  '#nav2'
	});
	jQuery('#keyword').bind('focus', function(){
		jQuery(this).val('');
	});
	var settings = {
			'templateItem'	:	'<li data-value="${value}" data-filter="${name}" style="clear:left;">${name}<div class="group">${group}</div></li>',
			'height'		:	'22px',
			'tabindex'		:	5,
			'allowInput'	:	false,
			'maxVisibleItems': 	8
		};
	
	
	if( jQuery.browser.msie == undefined )
	{
		window.cb = $( "#artist" ).comboboxtmpl( settings );
		jQuery(window.cb).bind( 'comboboxtmplchange', function ( event, ui ) {
			//alert( 'value: ' + ui.value() );
		} );
				
		window.cb = $( "#yearFrom" ).comboboxtmpl( settings );
		jQuery(window.cb).bind( 'comboboxtmplchange', function ( event, ui ) {
			//alert( 'value: ' + ui.value() );
		} );
		
		window.cb = $( "#yearTo" ).comboboxtmpl( settings );
		jQuery(window.cb).bind( 'comboboxtmplchange', function ( event, ui ) {
			//alert( 'value: ' + ui.value() );
		} );
		
	}

});
