﻿jQuery.noConflict();
jQuery(document).ready(function() {
	// usuwa tytuł
	var downloadFilesUl = jQuery("#downloadFiles ul").size();
	if (downloadFilesUl == 0) {
		jQuery("#downloadFiles").addClass("hide");
	}

	jQuery("#ulPosluchaj li:last").css({"border":"0"});
	jQuery(".listBroadcast").each(function(){
		jQuery(this).find("li:last").css({"border":"0"});
	});

	// poprawia formularz googleSearch
	jQuery("#window input").css({"background": "#272d3d", "padding": "0", "border": "0"});
	jQuery("#window input").click(function() {
		jQuery("#window input").css({"background": "#272d3d"});
	});

	// history
	jQuery("ul#history a").click(function() {
		jQuery("#seeMoreBox").css({"display":"block"});
		var srcHistory = jQuery(this).find("img").attr("title");

		jQuery("#seeMoreBox iframe").attr("src", srcHistory);
	});

	jQuery("#buttonClose").click(function() {
		jQuery("#seeMoreBox").css({"display":"none"});
	});
});
