			/*##########THIS ONE IS THE CYCLE ##########*/
			$(document).ready(function(){			
			
				/*##########THIS ONE IS FOR INPUTs FOCUS & BLUR EVENTS ##########*/
				$('input').each(function(){
					var currentValue = $(this).val();
					$(this).focus(function(){
						if( $(this).val() == currentValue)
						{
							$(this).val('');
						}
					});
					$(this).blur(function(){
						if( $(this).val() == '')
						{
							$(this).val(currentValue);
						}
					});
				});

				$('.slider').cycle({					
					fx: 'fade',
					timeout: 0,
					prev: '.left_control',
					next: '.right_control',
					pager: '.pager',
					fadeOut: 700,
					pagerAnchorBuilder: function(idx, slide){
						// return selector string for existing anchor 
						return 'ul.pager li:eq(' + idx + ') a';
					}
				});
				
				$('a.left_control, a.right_control').mouseenter(function(){
					$(this).animate({
						opacity: 0.5
					});
				});
				
				$('a.left_control, a.right_control').mouseleave(function(){
					$(this).animate({
						opacity: 1
					});
				});
				
				/*##########THIS ONE IS FOR THE RSS IMAGE ##########*/
				$('#intro .box_center span a').mouseenter(function(){
					$('#intro .box_center span a .normal').fadeOut(700);
				});
				
				$('#intro .box_center span a').mouseleave(function(){
					$('#intro .box_center span a .normal').fadeIn(700);
				});
				
				
				/*##########THIS ONE IS FOR THE CONTACT US IMAGE ##########*/
				$('#nav > a').mouseenter(function(){
					$('#nav > a span .normal').fadeOut(700);
				});
				
				$('#nav > a').mouseleave(function(){
					$('#nav > a span .normal').fadeIn(700);
				});
				
				
				/*##########THIS ONE IS FOR THE READ ABOUT IMAGE (CONTENT IMAGE)##########*/
				$('#content .right_content a').mouseenter(function(){
					$('#content .right_content .normal').fadeOut(700);
				});
				
				$('#content .right_content a').mouseleave(function(){
					$('#content .right_content .normal').fadeIn(700);
				});
				
				/* Designs by hover effect */
				$('.designby span').hover(function(){
					$(this).animate({opacity:0.5});
				},
				function(){
					$(this).animate({opacity:1});
				});
				
			});

