$(document).ready(function(){
	$('ul.tabset').tabs('div.tab-content', {history: true});
	ieHover('.countries li');
	$('form.search input.text').click(function(){
		$(this).val('');
	});
	
	$('.downloads-list .downloads-expandable').click(function() {
		var height = $(this).parent().parent().css("height");
		if(height == 'auto') {
			// collapse
			$(this).parent().parent().css("height", "41px");
			$(this).removeClass("collapse");
			$(this).addClass("expand");
		}
		else {
			// expand
			$(this).parent().parent().css("height", "auto");
			$(this).removeClass("expand");
			$(this).addClass("collapse");
		}
	});
});

/* IE6 and ipad hover function */
	function ieHover(h_list) {		
		$(h_list).hover(function() {
		$(this).addClass('hover');
		}, function() {
		$(this).removeClass('hover');
	});

}
