// JavaScript Document
$(function(){
	$('.winner_gallery').css("display","none");
	
	$("p.winner_header").hover(
	  function () {
		$(this).addClass("hover_header");
		$(this).next(".winner_gallery").next(".winner_btm").addClass("hover_btm");
	  },
	  function () {
		$(this).removeClass("hover_header");
		$(this).next(".winner_gallery").next(".winner_btm").removeClass("hover_btm");
	  }
	);
	
	$('p.winner_header').click(function() {
		$(this).next(".winner_gallery").slideToggle("fast").siblings(".winner_gallery").slideUp("fast");
		$(this).css({"color":"#00aaf0"}).siblings('p.winner_header').css({"color":"#ffffff"});
	 });
});
