// JavaScript Document

$.fn.cycle.defaults.timeout = 6000;

		$(function(){

			$('#news_ticker').cycle({fx:'slideY',speed: 1000,timeout: 3000, next:'#next', prev:'#prev', pause:1});

			

			$("#comment-form").validate({submitHandler:function(){

							var name;

							var title;

							var email;

							var comment_text;

							var news_id;

							name= $("#exA_Id").val(); 

							title= $("#exA_sub").val(); 

							email= $("#exA_Email").val();

							news_id= $("#news_id").val();

							comment_text= $("#comment_text").val(); 													 

							var sub_data="name="+name+"&title="+title+"&email="+email+"&comment_text="+comment_text+"&news_id="+news_id;

							//alert(sub_data);

							$("#add_comment_loader").fadeIn(500);

							$.ajax({

							   type: "POST",							  

							   dataType:"html",							   

							   url: "add_comment.php",

							   contentType:"application/x-www-form-urlencoded; charset=windows-1256",

							   //scriptCharset:"windows-1256",							   

							   processData:false,

							   data: sub_data,

							   success: function(msg){														 
									if(msg=="done"){
                                        alert("شكراً لك .. لقد تم إرسال تعليقك وسينشر بعد أن يطلع عليه المحرر");
										$("#exA_Id").val(""); 
										$("#exA_sub").val(""); 
										$("#exA_Email").val("");
										$("#news_id").val("");
										$("#comment_text").val(""); 
									}
                                	else
                                    	alert(msg);
									$("#add_comment_loader").fadeOut(500);

							   }

							   //processData:false,

							   //"Content-Type":"application/x-www-form-urlencoded; charset=windows-1256",

							   //scriptCharset:"windows-1256",

							   

							 });						

							return false;						

													 

			}		});

				

			$('#menu div')

				.css( {backgroundPosition: "-20px 35px"} )

				.mouseover(function(){$(this).stop().animate({backgroundPosition:"(-20px 94px)"}, {duration:500})})

				.mouseout(function(){$(this).stop().animate({backgroundPosition:"(40px 35px)"}, {duration:200, complete:function(){

					$(this).css({backgroundPosition: "-20px 35px"})

				}})

			})

			$('#gallery a').lightBox({txtImage:"الصورة",txtOf:"من"});			

			$('.search_btn').click(function(){

                $('.search_text_cont form').submit();

            });

			/*$('.thumbs').piroBox({

			border: 10,

			borderColor : '#222', 

			mySpeed: 700,  

			bg_alpha: 0.3,

			cap_op_start : 0.4,

			cap_op_end: 0.8,

			pathLoader : '#000 url(js/jq/pito_css/ajax-loader.gif) center center no-repeat;', 

			gallery : '.gallery_in li a', 

			gallery_li : '.gallery_in li', 

			next_class : '.next_in',

			previous_class : '.previous_in'

			});*/

            $('a.media').media({ width: 320, height: 240, autoplay: true,bgColor:"transparent" });			
			$('a.sounds_media').media({ width: 320, height: 60, autoplay: true,bgColor:"transparent" });			

	});