/* showSlider */
$(function() {
	$('#showSlider').cycle({ 
	fx: 'scrollHorz', 
	speed: 1500,
	timeout: 5000,
	pause: 1,
	prev: '#prevBtn',
	next: '#nextBtn'
 });
});

/* toogleContactForm */
$(document).ready(function() {
$('#toogleContactForm').hide();
$('#toogleButton').click(function() {
	$('#toogleContactForm').slideToggle(1000);
	return false;
});
$('#toogleClose').click(function() {
	$('#toogleContactForm').slideToggle(1000);
	return false;
});
});

/* Ajaxing contactForm */
// ************* submit FORM
jQuery(document).ready(function(){
	$('#contactForm').submit(function(){
		var action = $(this).attr('action');
		$('#submit')
			.after('<img src="./img/loader.gif" width="32" height="32" alt="Načítám..." id="loader" />')
		$.post(action, { 
			name: $('#fJmeno').val(),
			email: $('#fEmail').val(),
			phone: $('#fTel').val(),
			message: $('#fZprava').val()
		},
			function(data){
				$('#formResult').remove();
				$('#sendButton').after('<div id="formResult">'+data+'</div>');
				$('#formResult').slideDown("slow");
				$('#loader').fadeOut(500,function(){$(this).remove()});
				if(data=='<p class="E_send">Zpráva byla odeslána, děkujeme!</p>') setTimeout('$("#toogleContactForm").slideUp(1000)', 3000);
			}
		);
		return false;
	});
});


/* Twitter */
getTwitters('tweetBox', { 
  id: 'design_55', 
  count: 5, 
  enableLinks: true, 
  ignoreReplies: true, 
  clearContents: true,
  template: '<img src="%user_profile_image_url%" width="32" height="32" alt="D55" /> %text% <a href="http://twitter.com/%user_screen_name%/statuses/%id%/" class="twitterTime">%time%</a>'
});  
